GetStorageFormat

Function Usage

Obtains the StorageFormat of an aclTensor.

StorageFormat indicates the layout format of the aclTensor in the memory, such as NCHW and ND.

Prototype

op::Format GetStorageFormat()

Parameters

None

Returns

op::Format (ge::Format), which is an enumeration that contains multiple formats, such as NCHW and ND.

Constraints

None

Example

1
2
3
void Func(const aclTensor *input) {
    auto format = input->GetStorageFormat();
}