modify the inconsistence in files

This commit is contained in:
huanxiaoling 2022-11-22 11:02:17 +08:00
parent ec00b30657
commit 137e02c095
2 changed files with 5 additions and 6 deletions

View File

@ -95,7 +95,7 @@ mindspore.set_context
配置Running Data Recorder
- **enable**表示在发生故障时是否启用Running Data Recorder去收集和保存训练中的关键数据。设置为True时将打开Running Data Recorder。设置为False时将关闭Running Data Recorder。
- **mode**指定在GRAPH_MODE(0)还是PYNATIVE_MODE(1)下运行两种模式均支持所有后端。默认值PYNATIVE_MODE(1)
- **mode**设置导出数据时的RDR模式。当设置为1时RDR只在故障情况下输出数据。当设置为2时RDR在故障情况和正常结束情况下输出数据。默认值1
- **path**设置Running Data Recorder保存数据的路径。当前路径必须是一个绝对路径。
内存重用:
@ -111,7 +111,7 @@ mindspore.set_context
Default/net/net (reserve_class_name_in_scope=False)
- **pynative_synchronize** (bool) - 表示是否在PyNative模式下启动设备同步执行。默认值False。设置为False时将在设备上异步执行算子。当算子执行出错时将无法定位特定错误脚本代码的位置。当设置为True时将在设备上同步执行算子。这将降低程序的执行性能。此时当算子执行出错时可以根据错误的调用栈来定位错误脚本代码的位置。
- **mode** (int) - 表示在GRAPH_MODE(0)或PYNATIVE_MODE(1)模式中的运行。默认值GRAPH_MODE(0)。GRAPH_MODE或PYNATIVE_MODE可以通过 `mode` 属性设置两种模式都支持所有后端。默认模式为GRAPH_MODE。
- **mode** (int) - 表示在GRAPH_MODE(0)或PYNATIVE_MODE(1)模式中运行两种模式都支持所有后端。默认值PYNATIVE_MODE。
- **enable_graph_kernel** (bool) - 表示开启图算融合去优化网络执行性能。默认值False。如果 `enable_graph_kernel` 设置为True则可以启用加速。有关图算融合的详细信息请查看 `使能图算融合 <https://www.mindspore.cn/docs/zh-CN/master/design/graph_fusion_engine.html>`_
- **graph_kernel_flags** (str) - 图算融合的优化选项当与enable_graph_kernel冲突时它的优先级更高。其仅适用于有经验的用户。例如mindspore.set_context(graph_kernel_flags="--opt_level=2 --dump_as_text")。一些常用选项:

View File

@ -831,7 +831,7 @@ def set_context(**kwargs):
When set to false, the RDR will be turned off.
- mode: sets the mode of RDR on exporting data. When set to 1, the RDR only exports data
in the fault scenario. When set to 2, the RDR exports data in the fault scenario and the
normal end scenario. Default is 1.
normal end scenario. Default: 1.
- path: sets the path where RDR saves data. The current path must be absolute.
Memory reuse:
@ -856,9 +856,8 @@ def set_context(**kwargs):
be located, when the value is set to True, the operator is executed synchronously on the device. It will
reduce the execution performance of the program. At this time, when an error occurs in the execution of
the operator, the location of the error script code can be located according to the call stack of the error.
mode (int): Running in GRAPH_MODE(0) or PYNATIVE_MODE(1). Default: PYNATIVE_MODE(1).
GRAPH_MODE or PYNATIVE_MODE can be set by `mode` attribute and both modes support all backends, default
mode is PYNATIVE_MODE.
mode (int): Running in GRAPH_MODE(0) or PYNATIVE_MODE(1).
Both modes support all backends. Default: PYNATIVE_MODE.
enable_graph_kernel (bool): Whether to enable graph kernel fusion to optimize network execution performance.
Default: False.
Indicates whether to enable image-computing convergence to optimize network execution performance.