mindspore.ops.BitwiseOr

class mindspore.ops.BitwiseOr[source]

Returns bitwise or of two tensors element-wise.

Refer to mindspore.ops.bitwise_or() for more detail.

Supported Platforms:

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