jax.numpy.bitwise_and

目录

jax.numpy.bitwise_and#

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

按元素计算按位与操作。

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

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

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

  • args (ArrayLike)

  • out (None)

  • where (None)

返回:

包含元素逐位与运算结果的数组。

返回类型:

Any