!39690 [MS][LITE] addcdiv, addcmul doc

Merge pull request !39690 from sunsuodong/code_docs_addcdiv_addcmul
This commit is contained in:
i-robot 2022-08-04 08:17:56 +00:00 committed by Gitee
commit 142ea56b82
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 52 additions and 1 deletions

View File

@ -0,0 +1,24 @@
mindspore.ops.Addcdiv
========================
.. py:class:: mindspore.ops.Addcdiv
执行张量x1与张量x2的逐元素除法将结果乘以标量值value并将其添加到input_data中。
.. math::
y[i] = input\_data[i] + value[i] * (x1[i] / x2[i])
输入:
- **input_data** (Tensor) - 要添加的张量。
- **x1** (Tensor) - 分子张量。
- **x2** (Tensor) - 分母张量。
- **value** (Tensor) - 张量x1/x2的乘数。
输出:
Tensor具有与x1/x2相同的形状和dtype。
异常:
- **TypeError** - 如果 `x1``x2``value``input_data` 的dtype不是张量。
- **ValueError** - 如果无法将 `x1` 广播到形状为 `x2` 的张量。
- **ValueError** - 如果无法将 `value` 广播到形状为 `x1/x2` 的张量。
- **ValueError** - 如果无法将 `input_data` 广播到形状为 `value*(x1/x2)` 的张量。

View File

@ -0,0 +1,27 @@
mindspore.ops.Addcmul
========================
.. py:class:: mindspore.ops.Addcmul
执行张量x1与张量x2的逐元素乘积将结果乘以标量值value并将其添加到input_data中。
.. math::
output[i] = input\_data[i] + value[i] * (x1[i] * x2[i])
输入:
- **input_data** (Tensor) - 要添加的张量。
- **x1** (Tensor) - 要乘以的张量。
- **x2** (Tensor) - 要乘以的张量。
- **value** (Tensor) - 张量x1*x2的乘数。
输出:
Tensor具有与x1*x2相同的形状和dtype。
异常:
- **TypeError** - 如果 `x1``x2``value``input_data` 的dtype不是张量。
- **TypeError** - 如果 `input_data` 的dtype不是float32、float16、int32之一。
- **TypeError** - 如果 `x1``x2` 的dtype不是float32、float16、int32之一.
- **TypeError** - 如果 `value` 的dtype不是float32、float16、int32之一。
- **ValueError** - 如果无法将 `x1` 广播到形状为 `x2` 的张量。
- **ValueError** - 如果无法将 `value` 广播到形状为 `x1` * `x2` 的张量。
- **ValueError** - 如果无法将 `input_data` 广播到形状为 `value*(x1*x2)` 的张量。

View File

@ -258,7 +258,7 @@ class Addcdiv(Primitive):
- **value** (Tensor) - The multiplier for tensor x1/x2.
Outputs:
Tensor y, has the same shape and dtype as x1/x2.
Tensor, has the same shape and dtype as x1/x2.
Raises:
TypeError: If dtype of `x1`, `x2`, `value`, `input_data` is not tensor.