Merge pull request !48659 from 于振华/code_docs_230209
This commit is contained in:
i-robot 2023-02-13 02:30:18 +00:00 committed by Gitee
commit 1abda3f03b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
4 changed files with 22 additions and 1 deletions

View File

@ -229,6 +229,7 @@ mindspore.ops
mindspore.ops.float_power
mindspore.ops.fmod
mindspore.ops.frac
mindspore.ops.gcd
mindspore.ops.hypot
mindspore.ops.igamma
mindspore.ops.igammac

View File

@ -0,0 +1,18 @@
mindspore.ops.gcd
=================
.. py:function:: mindspore.ops.gcd(x1, x2)
按元素计算输入Tensor的最大公约数。
两个输入的shape应该是可广播的它们的数据类型应该是int32int64之一。
参数:
- **x1** (Tensor) - 第一个输入。
- **x2** (Tensor) - 第二个输入。
返回:
Tensor返回的shape与广播后的shape数据类型为两个输入中数字精度较高的类型。
异常:
- **TypeError** - 如果`x1``x2` 的数据类型既不是int32也不是int64.。
- **ValueError** - 如果两个输入的shape不可广播。

View File

@ -229,6 +229,7 @@ Element-wise Operations
mindspore.ops.float_power
mindspore.ops.fmod
mindspore.ops.frac
mindspore.ops.gcd
mindspore.ops.hypot
mindspore.ops.igamma
mindspore.ops.igammac

View File

@ -5329,7 +5329,7 @@ def gcd(x1, x2):
The shape of two inputs should be broadcastable, and data type of them should be
one of: int32, int64
Inputs:
Args:
- **x1** (Tensor) - The first input tensor.
- **x2** (Tensor) - The second input tensor.
@ -10144,6 +10144,7 @@ __all__ = [
'logical_or',
'logical_and',
'logit',
'gcd',
'logsumexp',
'ldexp',
'rsqrt',