Defined in tensorflow/_api/v1/bitwise/__init__.py.
Operations for manipulating the binary representations of integers.
Functions
bitwise_and(...): Elementwise computes the bitwise AND of x and y.
bitwise_or(...): Elementwise computes the bitwise OR of x and y.
bitwise_xor(...): Elementwise computes the bitwise XOR of x and y.
invert(...): Flips all bits elementwise.
left_shift(...): Elementwise computes the bitwise left-shift of x and y.
right_shift(...): Elementwise computes the bitwise right-shift of x and y.