torch.logical_or

torch.logical_or(input, other, *, out=None)Tensor

计算给定输入张量的逐元素逻辑或运算。将零视为False,非零值视为True

参数
  • input (Tensor) – 需要输入的张量。

  • other (Tensor) – 参与OR运算的张量

关键字参数

out (Tensor, 可选) – 指定输出张量。

示例:

>>> torch.logical_or(torch.tensor([True, False, True]), torch.tensor([True, False, False]))
tensor([ True, False,  True])
>>> a = torch.tensor([0, 1, 10, 0], dtype=torch.int8)
>>> b = torch.tensor([4, 0, 1, 0], dtype=torch.int8)
>>> torch.logical_or(a, b)
tensor([ True,  True,  True, False])
>>> torch.logical_or(a.double(), b.double())
tensor([ True,  True,  True, False])
>>> torch.logical_or(a.double(), b)
tensor([ True,  True,  True, False])
>>> torch.logical_or(a, b, out=torch.empty(4, dtype=torch.bool))
tensor([ True,  True,  True, False])
本页目录