mindspore.ops.Neg
- class mindspore.ops.Neg[源代码]
计算输入x的相反数并返回。
\[out_{i} = - x_{i}\]输入:
x (Tensor) - Neg的输入,任意维度的Tensor,秩应小于8。其数据类型为数值型。
输出:
Tensor,shape和类型与输入相同。
异常:
TypeError - x 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> neg = ops.Neg() >>> x = Tensor(np.array([1, 2, -1, 2, 0, -3.5]), mindspore.float32) >>> output = neg(x) >>> print(output) [-1. -2. 1. -2. 0. 3.5]