GetStorageFormat

Description

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), an enumeration that defines different formats, such as NCHW and ND.

For details about ge::Format, see ge::Format in Basic Data Structures and APIs.

Constraints

None.

Example

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