GetVersion
Function Usage
Obtains the version of a tensor. kTensorV1 indicates that the view and offset information is not carried. kTensorV2 indicates that the view and offset information is carried.
This API is reserved for future use and not supported in the current version.
Prototype
1 | TensorVersion GetVersion () const |
Parameters
None
Returns
Version of a tensor.
For details about the definition of the TensorVersion type, see TensorVersion.
Constraints
None
Examples
1 2 3 4 5 6 | 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 version = tensor.GetVersion(); // kTensorV1 |
Parent topic: Tensor