mindspore.ops.BitwiseOr

class mindspore.ops.BitwiseOr[源代码]

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

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

支持平台:

Ascend CPU GPU

样例:

>>> 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_or = ops.BitwiseOr()
>>> output = bitwise_or(x, y)
>>> print(output)
[ 0  1  1 -1 -1  3  3]