mindspore.ops.coo_square

mindspore.ops.coo_square(x: COOTensor)[源代码]

逐元素返回COOTensor的平方。

\[y_i = x_i ^ 2\]
参数:
  • x (COOTensor) - 输入COOTensor的维度范围为[0,7],类型为数值类型。

返回:

COOTensor,具有与当前COOTensor相同的数据类型和shape。

异常:
  • TypeError - x 不是COOTensor。

支持平台:

Ascend GPU CPU

样例:

>>> indices = Tensor([[0, 1], [1, 2]], dtype=mstype.int64)
>>> values = Tensor([-1, 2], dtype=mstype.float32)
>>> shape = (3, 4)
>>> x = COOTensor(indices, values, shape)
>>> output = ops.coo_square(x)
>>> print(output.values)
[1. 4.]