mindspore.ops.coo_abs

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

逐元素计算输入COOTensor的绝对值。

\[out_i = |x_i|\]
参数:
  • x (COOTensor) - 输入COOTensor。

返回:

COOTensor,shape与 x 相同。

异常:
  • 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_abs(x)
>>> print(output.values)
[1. 2.]