GetExpandDimsType
Description
Obtains the dimension expansion rule of a shape.
Prototype
ExpandDimsType GetExpandDimsType() const
Parameters
None
Returns
Dimension expansion rule of a shape.
For details about the definition of the ExpandDimsType type, see ExpandDimsType.
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 expand_dims_type = tensor.GetExpandDimsType(); // ExpandDimsType{}
Parent topic: Tensor