mlx.core.bitwise_and

Contents

mlx.core.bitwise_and#

bitwise_and(a: scalar | array, b: scalar | array, stream: None | Stream | Device = None) array#

Element-wise bitwise and.

Take the bitwise and of two arrays with numpy-style broadcasting semantics. Either or both input arrays can also be scalars.

Parameters:
  • a (array) – Input array or scalar.

  • b (array) – Input array or scalar.

Returns:

The bitwise and a & b.

Return type:

array