mindspore.ops.BitwiseXor

class mindspore.ops.BitwiseXor[源代码]

逐元素执行两个Tensor的异或运算。

更多细节详见 mindspore.ops.bitwise_xor()

支持平台:

Ascend CPU GPU

样例:

>>> x = Tensor(np.array([0, 0, 1, -1, 1, 1, 1]), mindspore.int16)
>>> y = Tensor(np.array([0, 1, 1, -1, -1, 2, 3]), mindspore.int16)
>>> bitwise_xor = ops.BitwiseXor()
>>> output = bitwise_xor(x, y)
>>> print(output)
[ 0  1  0  0 -2  3  2]