jax.lax.reduce_and#
- jax.lax.reduce_and(operand, axes)[源代码]#
计算一个或多个数组轴上元素的按位与。
- 参数:
operand (ArrayLike) – 要在其上计算归约的数组。必须具有布尔型或整型 dtype。
axes (Sequence[int]) – 指定要在其上进行归约的轴的零个或多个唯一整数的序列。每个条目必须满足
0 <= axis < operand.ndim
。
- 返回:
与
operand
具有相同 dtype 的数组,其形状对应于operand.shape
的维度,并移除了axes
。- 返回类型:
参见
jax.numpy.bitwise_and.reduce()
:更灵活的 NumPy 风格的逻辑归约 API,围绕jax.lax.reduce_and()
构建。其他低级
jax.lax
归约运算符:jax.lax.reduce_sum()
、jax.lax.reduce_prod()
、jax.lax.reduce_max()
、jax.lax.reduce_min()
、jax.lax.reduce_or()
、jax.lax.reduce_xor()
。