MutableFormat
Function Usage
Obtains the data formats of a tensor, including the data format at runtime and original data format.
Prototype
1 | StorageFormat &MutableFormat() |
Parameters
None
Returns
Format reference.
For details about the definition of the StorageFormat type, see StorageFormat.
Constraints
None
Examples
1 2 3 4 5 6 | TensorV2 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.MutableFormat(); |
Parent topic: TensorV2