设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
逐元素返回Tensor的平方。
Tensor,具有与当前Tensor相同的数据类型和shape。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1.0, 2.0, 3.0]), mindspore.float32) >>> output = x.square() >>> print(output) [1. 4. 9.]