aclrtMemcpy2d

Applicability

Product

Supported

Atlas A3 training products / Atlas A3 inference products

Atlas A2 training products / Atlas A2 inference products

Atlas 200I/500 A2 inference products

Atlas inference products

Atlas training products

Description

Implements synchronous memory copy, which is mainly used for matrix data replication.

Prototype

aclError aclrtMemcpy2d(void *dst, size_t dpitch, const void *src, size_t spitch, size_t width, size_t height, aclrtMemcpyKind kind)

Parameters

Parameter

Input/Output

Description

dst

Input

Pointer to the destination memory address.

dpitch

Input

Address distance between two adjacent columns of vectors in the destination memory.

src

Input

Pointer to the source memory address.

spitch

Input

Address distance between two adjacent columns of vectors in the source memory.

width

Input

Width of the data to be copied.

height

Input

Height of the data to be copied.

kind

Input

Memory copy kind.

Returns

0 on success; else, failure. For details, see aclError.

Restrictions

  • Currently, only memory copy of the ACL_MEMCPY_HOST_TO_DEVICE and ACL_MEMCPY_DEVICE_TO_HOST types is supported.
  • The Ascend RC form of Atlas 200I/500 A2 inference products does not support this API.
  • The Atlas inference accelerator modules do not support this API.

See Also

The following figure shows the memory copy of this API.