jax.lax.reduce_xor#

jax.lax.reduce_xor(operand, axes)[源代码]#

计算一个或多个数组轴上元素的按位异或。

参数:
  • operand (ArrayLike) – 用于计算缩减的数组。必须具有布尔或整数 dtype。

  • axes (Sequence[int]) – 零个或多个唯一整数的序列,指定要在其上进行缩减的轴。 每个条目必须满足 0 <= axis < operand.ndim

返回:

operand 具有相同 dtype 的数组,其形状对应于 operand.shape 的维度,并删除了 axes

返回类型:

Array

另请参阅