快捷方式

torch.bitwise_xor

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

计算inputother的按位异或。输入张量必须为整型或布尔型。对于布尔型张量,它计算逻辑异或。

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

  • other – 第二个输入张量

关键字参数

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

示例

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

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源