mindspore.ops.BitwiseAnd

class mindspore.ops.BitwiseAnd[源代码]

逐元素执行两个Tensor的与运算。

更多细节详见 mindspore.ops.bitwise_and()

支持平台:

Ascend CPU

样例:

>>> 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]