GetFormat

Description

Obtains the formats of a tensor, including the storage and original formats. The returned format object is read-only.

Prototype

const StorageFormat &GetFormat() const

Parameters

None

Returns

Read-only format reference.

For details about the definition of the StorageFormat type, see StorageFormat.

Restrictions

None

Example

Tensor tensor{{{8, 3, 224, 224}, {16, 3, 224, 224}},       // shape              
              {ge::FORMAT_ND, ge::FORMAT_FRACTAL_NZ, {}},  // format              
              kFollowing,                                  // placement              
              ge::DT_FLOAT16,                              //dt              
              nullptr};
auto fmt = tensor.GetFormat();