设计
模型库
API
API映射
迁移指南
语法支持
FAQ
RELEASE NOTES
返回输入Tensor的Shape。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> input_x = Tensor(np.ones(shape=[3, 2, 1]), mindspore.float32) >>> shape = ops.TensorShape() >>> output = shape(input_x) >>> print(output) [3 2 1]