设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
返回每个元素的绝对值。
Tensor。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> from mindspore import Tensor >>> a = Tensor([1.1, -2.1]).astype("float32") >>> output = a.abs() >>> print(output) [1.1 2.1]