GetOriginalFormat

Description

Obtains the OriginFormat of an aclTensor.

OriginFormat indicates the original format of the aclTensor before it passes through the transdata node (if any).

Prototype

op::Format GetOriginalFormat()

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->GetOriginalFormat();
}