jax.numpy.按位异或

目录

jax.numpy.按位异或#

jax.numpy.bitwise_xor = <jnp.ufunc 'bitwise_xor'>#

逐元素计算按位异或运算。

JAX implementation of numpy.bitwise_xor. This is a universal function, and supports the additional APIs described at jax.numpy.ufunc.

参数:
  • x – 整数或布尔数组。必须能够广播到相同的形状。

  • y – 整数或布尔数组。必须能够广播到相同的形状。

  • args (ArrayLike)

  • out (None)

  • where (None)

返回:

包含元素逐位异或结果的数组。

返回类型:

Any