Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Ctrl+K
JAX  documentation - Home

jax.numpy.bitwise_and

Contents

jax.numpy.bitwise_and#

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

Compute the bitwise AND operation elementwise.

JAX implementation ofnumpy.bitwise_and. This is a universal function,and supports the additional APIs described atjax.numpy.ufunc.This function provides the implementation of the& operator forJAX arrays.

Parameters:
  • x – integer or boolean arrays. Must be broadcastable to a common shape.

  • y – integer or boolean arrays. Must be broadcastable to a common shape.

  • args (ArrayLike)

  • out (None)

  • where (None)

Returns:

Array containing the result of the element-wise bitwise AND.

Return type:

Any

Examples

Callingbitwise_and explicitly:

>>>x=jnp.arange(4)>>>jnp.bitwise_and(x,1)Array([0, 1, 0, 1], dtype=int32)

Callingbitwise_and via the& operator:

>>>x&1Array([0, 1, 0, 1], dtype=int32)
Contents

[8]ページ先頭

©2009-2025 Movatter.jp