快捷方式

torch.gcd

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

计算inputother的逐元素最大公约数 (GCD)。

inputother都必须具有整数类型。

注意

这定义了gcd(0,0)=0gcd(0, 0) = 0.

参数
  • input (张量) – 输入张量。

  • other (张量) – 第二个输入张量

关键字参数

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

示例

>>> a = torch.tensor([5, 10, 15])
>>> b = torch.tensor([3, 4, 5])
>>> torch.gcd(a, b)
tensor([1, 2, 5])
>>> c = torch.tensor([3])
>>> torch.gcd(a, c)
tensor([1, 1, 3])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取初学者和高级开发者的深度教程

查看教程

资源

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

查看资源