设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
逐元素返回当前Tensor的平方。
Tensor,具有与当前Tensor相同的数据类型和shape。
TypeError - 输出不是Tensor。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1.0, 4.0, 9.0]), mindspore.float32) >>> output = x.sqrt() >>> print(output) [1. 2. 3.]