Binary Operations

Elementwise bit operations

dpnp.bitwise_and

Compute the bit-wise AND of two arrays element-wise.

dpnp.bitwise_not

Compute bit-wise inversion, or bit-wise NOT, element-wise.

dpnp.bitwise_or

Compute the bit-wise OR of two arrays element-wise.

dpnp.bitwise_xor

Compute the bit-wise XOR of two arrays element-wise.

dpnp.invert

Compute bit-wise inversion, or bit-wise NOT, element-wise.

dpnp.left_shift

Shift the bits of an integer to the left.

dpnp.right_shift

Shift the bits of an integer to the right.

Bit packing

Output formatting