mindspore.ops.BitwiseAnd

class mindspore.ops.BitwiseAnd[source]

Returns bitwise and of two tensors element-wise.

Refer to mindspore.ops.bitwise_and() for more details.

Inputs:
  • x (Tensor) - The first input tensor with shape \((N,*)\) where \(*\) means, any number of additional dimensions.

  • y (Tensor) - The second input tensor with same type as the x.

Outputs:

Tensor, has the same type as the x.

Supported Platforms:

Ascend GPU CPU

Examples

>>> x = Tensor(np.array([0, 0, 1, -1, 1, 1, 1]), mindspore.int16)
>>> y = Tensor(np.array([0, 1, 1, -1, -1, 2, 3]), mindspore.int16)
>>> bitwise_and = ops.BitwiseAnd()
>>> output = bitwise_and(x, y)
>>> print(output)
[ 0  0  1 -1  1  0  1]