GetShapeSize
Function Usage
Obtains the shape size of the current tensor, that is, the number of elements in the tensor.
Prototype
1 | int64_t GetShapeSize() const |
Parameters
None
Returns
Size of the shape during execution
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 shape_size = tensor.GetShapeSize(); // 16*3*224*224 |
Parent topic: Tensor