mindspore.numpy.square
- mindspore.numpy.square(x, dtype=None)[源代码]
Returns the element-wise square of the input.
说明
Numpy arguments out, where, casting, order, subok, signature, and extobj are not supported. On GPU, the supported dtypes are np.float16 and np.float32.
- 参数
x (Tensor) – Input data.
dtype (
mindspore.dtype
, optional) – Default:None
. Overrides the dtype of the output Tensor.
- 返回
Tensor or scalar, element-wise
x*x
, of the same shape and dtype as x. This is a scalar if x is a scalar..
- Supported Platforms:
Ascend
GPU
CPU
样例
>>> import mindspore.numpy as np >>> x = np.square(np.arange(6).reshape(2, 3).astype('float32')) >>> print(x) [[ 0. 1. 4.] [ 9. 16. 25.]]