bitwise_xor

dragon.vm.tensorflow.bitwise.bitwise_xor(
  x,
  y,
  name=None
)[source]

Compute the element-wise XOR bitwise operation.

\[\text{out} = \text{input1} \oplus \text{input2} \]

Examples:

x = tf.constant([False, True, False, True])
y = tf.constant([False, True, True, False])
print(tf.bitwise.bitwise_xor(x, y))  # False, False, True, True
print(x - y)  # Equivalent operation
Parameters:
Returns:

dragon.Tensor The output tensor.