mindspore.ops.Abs
- class mindspore.ops.Abs[source]
Returns absolute value of a tensor element-wise.
Refer to
mindspore.ops.abs()
for more detail.- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([-1.0, 1.0, 0.0]), mindspore.float32) >>> abs = ops.Abs() >>> output = abs(x) >>> print(output) [1. 1. 0.]