jax.lax.bitwise_or#
- jax.lax.bitwise_or(x, y)[source]#
Elementwise OR: \(x \vee y\).
This function lowers directly to the stablehlo.or operation.
- Parameters:
x (ArrayLike) – Input arrays. Must have matching boolean or integer dtypes. If neither is a scalar,
x
andy
must have the same number of dimensions and be broadcast compatible.y (ArrayLike) – Input arrays. Must have matching boolean or integer dtypes. If neither is a scalar,
x
andy
must have the same number of dimensions and be broadcast compatible.
- Returns:
An array of the same dtype as
x
andy
containing the bitwise OR of each pair of broadcasted entries.- Return type:
See also
jax.numpy.invert()
: NumPy wrapper for this API, also accessible via thex | y
operator on JAX arrays.jax.lax.bitwise_not()
: Elementwise NOT.jax.lax.bitwise_and()
: Elementwise AND.jax.lax.bitwise_xor()
: Elementwise exclusive OR.