From 4295981a48f07ed0b01f85a55c1da91c83376eb9 Mon Sep 17 00:00:00 2001 From: yangxinxian <947098055@qq.com> Date: Tue, 18 Jun 2024 15:40:41 +0800 Subject: [PATCH] =?UTF-8?q?CCB=E8=AF=84=E5=AE=A1=EF=BC=8C=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tutorials/experts/source_zh_cn/debug/dump.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/experts/source_zh_cn/debug/dump.md b/tutorials/experts/source_zh_cn/debug/dump.md index 85027f4853..a541cfba4a 100644 --- a/tutorials/experts/source_zh_cn/debug/dump.md +++ b/tutorials/experts/source_zh_cn/debug/dump.md @@ -177,8 +177,8 @@ MindSpore提供了同步Dump与异步Dump两种模式: - `iteration_id`:训练的轮次。 - `op_type`:算子类型。 - `op_name`:算子名称。 -- `task_id`:任务标号。 -- `stream_id`:流标号。 +- `task_id`:任务标号,如果获取不到,默认为65535。 +- `stream_id`:流标号,如果获取不到,默认为65535。 - `timestamp`:时间戳。 - `input_output_index`:输入或输出标号,例如`output.0`表示该文件是该算子的第1个输出Tensor的数据。 - `slot`:slot标号。 @@ -501,8 +501,8 @@ MindSpore通过异步Dump提供了Ascend平台上大型网络的调试能力。 - `iteration_id`:GE侧训练的轮次。 - `op_type`:算子类型。 - `op_name`:算子名称。 -- `task_id`:任务标号。 -- `stream_id`:流标号。 +- `task_id`:任务标号,如果获取不到,默认为65535。 +- `stream_id`:流标号,如果获取不到,默认为65535。 - `timestamp`:时间戳。 - `step_id`: 用户侧的训练轮次。 -- Gitee