评价此页

torch.bitwise_or#

torch.bitwise_or(input: Tensor, other: Tensor, *, out: Optional[Tensor]) Tensor#

计算 inputother 的按位或 (bitwise OR)。输入张量必须是整数或布尔类型。对于布尔张量,它计算逻辑或 (logical OR)。

参数
  • input – 第一个输入张量

  • other – 第二个输入张量

关键字参数

out (Tensor, optional) – 输出张量。

示例

>>> torch.bitwise_or(torch.tensor([-1, -2, 3], dtype=torch.int8), torch.tensor([1, 0, 3], dtype=torch.int8))
tensor([-1, -2,  3], dtype=torch.int8)
>>> torch.bitwise_or(torch.tensor([True, True, False]), torch.tensor([False, True, False]))
tensor([ True, True, False])