org.tensorflow.op.bitwise

Classes

BitwiseAnd<T extends TNumber> Elementwise computes the bitwise AND of `x` and `y`. 
BitwiseOr<T extends TNumber> Elementwise computes the bitwise OR of `x` and `y`. 
BitwiseXor<T extends TNumber> Elementwise computes the bitwise XOR of `x` and `y`. 
Invert<T extends TNumber> Invert (flip) each bit of supported types; for example, type `uint8` value 01010101 becomes 10101010. 
LeftShift<T extends TNumber> Elementwise computes the bitwise left-shift of `x` and `y`. 
RightShift<T extends TNumber> Elementwise computes the bitwise right-shift of `x` and `y`.