Operations for manipulating the binary representations of integers.
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(...)
: Invert (flip) each bit of supported types; for example, type uint8
value 01010101 becomes 10101010.
left_shift(...)
: Elementwise computes the bitwise left-shift of x
and y
.
right_shift(...)
: Elementwise computes the bitwise right-shift of x
and y
.
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/compat/v1/bitwise