bitwise_and

dragon.vm.tensorflow.bitwise.bitwise_and(
  x,
  y,
  name=None
)[source]

Compute the element-wise AND bitwise operation.

\[\text{out} = \text{input1} \mathbin{\&} \text{input2} \]

Examples:

x = tf.constant([False, True, False, True])
y = tf.constant([False, True, True, False])
print(tf.bitwise.bitwise_and(x, y))  # False, True, False, False
print(x * y)  # Equivalent operation
Parameters:
Returns:

dragon.Tensor The output tensor.