mindspore.numpy.add
- mindspore.numpy.add(x1, x2, dtype=None)[源代码]
逐元素相加两个参数。
说明
不支持Numpy的
out
、where
、casting
、order
、subok
、signature
和extobj
参数。- 参数:
x1 (Tensor) - 参与相加的第一个输入。
x2 (Tensor) - 参与相加的第二个输入。
dtype (mindspore.dtype, 可选) - 默认值:
None
。用于覆盖输出Tensor的dtype。
- 返回:
Tensor或标量,
x1
和x2
逐元素相加后的和。如果x1
和x2
都是标量,则返回标量。- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore.numpy as np >>> x1 = np.full((3, 2), [1, 2]) >>> x2 = np.full((3, 2), [3, 4]) >>> output = np.add(x1, x2) >>> print(output) [[4 6] [4 6] [4 6]]