mindspore.Tensor.invert

mindspore.Tensor.invert()[源代码]

逐元素按位翻转当前Tensor。

\[out_i = \sim x_{i}\]

其中 x 表示当前Tensor。

返回:

Tensor,shape和类型与当前Tensor相同。

异常:
  • TypeError - 当前Tensor的数据类型不为int16或uint16。

支持平台:

Ascend GPU CPU

样例:

>>> x = Tensor(np.array([25, 4, 13, 9]), mindspore.int16)
>>> output = x.invert()
>>> print(output)
[-26 -5 -14 -10]