mindspore.ops.TensorShape

class mindspore.ops.TensorShape[源代码]

返回输入Tensor的Shape。

输入:

  • input_x (Tensor) - 第一个输入,是一个Tensor类型数据。

输出:

Tensor,输入 input_x 的shape。

异常:

  • TypeError - input_x 都不是Tensor。

支持平台:

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]