mindspore.numpy.gcd
- mindspore.numpy.gcd(x1, x2, dtype=None)[source]
Returns the greatest common divisor of
|x1|
and|x2|
.Note
Numpy arguments out, where, casting, order, subok, signature, and extobj are not supported.
- Parameters
x1 (Tensor) – input data.
x2 (Tensor) – input data.
dtype (
mindspore.dtype
, optional) – defaults to None. Overrides the dtype of the output Tensor.
- Returns
Tensor or scalar, the greatest common divisor of the absolute value of the inputs. This is a scalar if both x1 and x2 are scalars.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore.numpy as np >>> output = np.gcd(np.arange(6), np.array(20)) >>> print(output) [20 1 2 1 4 5]