!43566 modify the inconsistence in 1.9 1010

Merge pull request !43566 from 宦晓玲/code_docs_01009
This commit is contained in:
i-robot 2022-10-10 09:56:10 +00:00 committed by Gitee
commit f4d4732e42
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
4 changed files with 7 additions and 3 deletions

View File

@ -17,6 +17,6 @@ mindspore.reset_auto_parallel_context
- strategy_ckpt_save_file''。
- full_batchFalse。
- enable_parallel_optimizerFalse。
- enable_alltoall: False。
- enable_alltoallFalse。
- pipeline_stages1。
- fusion_threshold: 64。
- fusion_threshold64。

View File

@ -5,6 +5,8 @@
对输入的多维数据进行三维的平均池化运算。
在输入Tensor上应用3D average pooling可被视为3D输入平面。
一般输入shape为 :math:`(N, C, D_{in}, H_{in}, W_{in})` AvgPool3D在 :math:`(D_{in}, H_{in}, W_{in})` 维度上输出区域平均值。给定 `kernel_size`:math:`(kD,kH,kW)``stride` ,运算如下:
.. warning::

View File

@ -21,7 +21,7 @@ mindspore.ops.Primitive
检查是否可以消除此Primitive。有需要的子类可以重写该方法。
参数:
- **args** (Primitive参数的类型) - 与当前Primitive的参数相同。
- **args** (Primitive args) - 与当前Primitive的参数相同。
返回:
由两个元素组成的元组。第一个元素是指是否能在编译阶段计算Primitive第二个元素是计算结果。

View File

@ -11,6 +11,8 @@ mindspore.ops.SparseApplyAdagradV2
var -= lr * grad * \frac{1}{\sqrt{accum} + \epsilon}
\end{array}
:math:`\epsilon` 代表 `epsilon`
`var``accum``grad` 的输入遵循隐式类型转换规则,使数据类型一致。如果它们具有不同的数据类型,则低精度数据类型将转换为相对最高精度的数据类型。
参数: