mindspore.ops.gcd

mindspore.ops.gcd(input, other)[源代码]

按元素计算输入Tensor的最大公约数。 两个输入的shape应该是可广播的,它们的数据类型应该是:int32,int64之一。

参数:
  • input (Tensor) - 第一个输入。

  • other (Tensor) - 第二个输入。

返回:

Tensor,返回的shape与广播后的shape,数据类型为两个输入中数字精度较高的类型。

异常:
  • TypeError - 如果 inputother 的数据类型既不是int32也不是int64。

  • ValueError - 如果两个输入的shape不可广播。

支持平台:

Ascend GPU CPU

样例:

>>> x1 = Tensor(np.array([7, 8, 9]))
>>> x2 = Tensor(np.array([14, 6, 12]))
>>> y = ops.gcd(x1, x2)
>>> print(y)
[7 2 3]