已合并
fix description of Gcd #1667
hahaha22创建于 3月14日
fix description of Gcd #1667
已合并
共 2 个文件变更+3-3
| @@ -87,7 +87,7 @@ aclnnStatus aclnnGcd( | |||
| 87 | <tr> | 87 | <tr> |
| 88 | <td>out(aclTensor*)</td> | 88 | <td>out(aclTensor*)</td> |
| 89 | <td>输出</td> | 89 | <td>输出</td> |
| 90 | - <td>公式中的out。</td> | 90 | + <td>self和other求最大公约数的结果。</td> |
| 91 | <td>数据类型是self与other推导之后可转换的数据类型。shape需要与self和other做<a href="../../../docs/zh/context/broadcast关系.md" target="_blank">broadcast</a>后的shape一致。</td> | 91 | <td>数据类型是self与other推导之后可转换的数据类型。shape需要与self和other做<a href="../../../docs/zh/context/broadcast关系.md" target="_blank">broadcast</a>后的shape一致。</td> |
| 92 | <td>UINT8、INT8、UINT16、INT16、INT32、UINT32、INT64、UINT64</td> | 92 | <td>UINT8、INT8、UINT16、INT16、INT32、UINT32、INT64、UINT64</td> |
| 93 | <td>ND</td> | 93 | <td>ND</td> |
| @@ -26,9 +26,9 @@ namespace ge { | |||
| 26 | 26 | ||
| 27 | * @par Inputs: | 27 | * @par Inputs: |
| 28 | * Two inputs, including: | 28 | * Two inputs, including: |
| 29 | -* @li x1: A ND Tensor. | 29 | +* @li x1: A ND Tensor, support 1D ~ 8D. |
| 30 | * Must be one of the following types: uint8, int8, int16, int32, int64. | 30 | * Must be one of the following types: uint8, int8, int16, int32, int64. |
| 31 | -* @li x2: A ND Tensor of the same dtype as "x1". \n | 31 | +* @li x2: A ND Tensor of the same dtype as "x1", support 1D ~ 8D. \n |
| 32 | 32 | ||
| 33 | * @par Outputs: | 33 | * @par Outputs: |
| 34 | * y: A ND Tensor. Has the same dtype as "x1". \n | 34 | * y: A ND Tensor. Has the same dtype as "x1". \n |