mindspore.ops.shape
- mindspore.ops.shape(input_x)[源代码]
返回输入Tensor的shape。
- 参数:
input_x (Tensor) - Tensor的shape为 \((x_1, x_2, ..., x_R)\) 。
- 返回:
tuple[int],输出tuple由多个整数组成, \((x_1, x_2, ..., x_R)\) 。
- 异常:
TypeError - 如果 input_x 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> input_x = Tensor(np.ones(shape=[3, 2, 1]), mindspore.float32) >>> output = ops.shape(input_x) >>> print(output) (3, 2, 1)