mindspore.ops.numel

mindspore.ops.numel(x)[源代码]

返回Tensor的元素的总数量。

参数:
  • x (Tensor) - 输入Tensor。

返回:

int。Tensor的元素的总数量。

支持平台:

Ascend GPU CPU

样例:

>>> input_x = Tensor(np.array([[2, 2], [2, 2]]), mindspore.float32)
>>> print(ops.numel(input_x))
4