aclSetTensorShape
The
Description
Sets the dims of the tensor processed by Ascend AI Processor after creating the tensor description by calling aclCreateTensorDesc. .
For example, if the original operator shape is 4D with format NHWC or 5D with format NDHWC, the format is automatically converted to NC1HWC0 or NDC1HWC0 during model conversion or online network build to facilitate memory access efficiency on Ascend AI Processor. Along the process, the operator shape is also inferred to facilitate internal computation.
Prototype
aclError aclSetTensorShape(aclTensorDesc *desc, int numDims, const int64_t *dims)
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
desc |
Output |
Pointer to data of the aclTensorDesc type. Call aclCreateTensorDesc to create data of the aclTensorDesc type in advance. |
numDims |
Input |
Number of dimensions. |
dims |
Input |
Pointer to dims. |
Returns
The value 0 indicates success, and other values indicate failure. For details, see aclError.