mindspore.Tensor.sub
- mindspore.Tensor.sub(y)[源代码]
更多细节参考
mindspore.ops.sub()
。- 参数:
- 返回:
Tensor,shape与广播后的shape相同,数据类型为输入中精度较高的类型。
- 异常:
TypeError - y 不是Tensor、number.Number或bool。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([1, 2, 3]), mindspore.int32) >>> y = Tensor(np.array([4, 5, 6]), mindspore.int32) >>> output = x.sub(y) >>> print(output) [-3 -3 -3]