jax.numpy.bitwise_or
Warning
This page was created from a pull request (#9655).
jax.numpy.bitwise_orΒΆ
- jax.numpy.bitwise_or(x1, x2)ΒΆ
Compute the bit-wise OR of two arrays element-wise.
LAX-backend implementation of
bitwise_or()
.Original docstring below.
Computes the bit-wise OR of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator
|
.- Parameters
x1 (array_like) β Only integer and boolean types are handled. If
x1.shape != x2.shape
, they must be broadcastable to a common shape (which becomes the shape of the output).x2 (array_like) β Only integer and boolean types are handled. If
x1.shape != x2.shape
, they must be broadcastable to a common shape (which becomes the shape of the output).
- Returns
out β Result. This is a scalar if both x1 and x2 are scalars.
- Return type
ndarray or scalar