jax_bitwise_xor¶
- probly.representation.jax_functions.jax_bitwise_xor(x1: JaxArrayLike, x2: JaxArrayLike, /) jax.Array[source]¶
- probly.representation.jax_functions.jax_bitwise_xor(x1: JaxOperand, x2: JaxOperand, /) object
Compute bitwise exclusive OR, mirroring
jax.numpy.bitwise_xor.- Parameters:
x1 – Left integer or boolean operand.
x2 – Right integer or boolean operand.
- Returns:
The elementwise bitwise exclusive OR, or a custom override result.