From 4713cce9b1a76e430525239f4689f825c74ecc98 Mon Sep 17 00:00:00 2001 From: huan <3174348550@qq.com> Date: Fri, 13 Jun 2025 15:09:44 +0800 Subject: [PATCH] modify contents 2.3.1 --- .../experts/source_en/parallel/advanced_operator_parallel.md | 2 +- .../experts/source_zh_cn/parallel/advanced_operator_parallel.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/experts/source_en/parallel/advanced_operator_parallel.md b/tutorials/experts/source_en/parallel/advanced_operator_parallel.md index c5ab1703dd..a3263a97ba 100644 --- a/tutorials/experts/source_en/parallel/advanced_operator_parallel.md +++ b/tutorials/experts/source_en/parallel/advanced_operator_parallel.md @@ -41,7 +41,7 @@ layout = Layout((2, 2, 2), name = ("dp", "sp", "mp")) a_strategy = layout("mp", ("sp", "dp")) ``` -Notice that the "[a0, a1, a2, a3]" of the tensor a is sliced twice to the "sp" and "mp" axes of the device, so that the result comes out as: +Notice that the "[a0, a1, a2, a3]" of the tensor a is sliced twice to the "sp" and "dp" axes of the device, so that the result comes out as: ![image](https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/r2.3.1/tutorials/experts/source_zh_cn/parallel/images/advanced_operator_parallel_view1.PNG) diff --git a/tutorials/experts/source_zh_cn/parallel/advanced_operator_parallel.md b/tutorials/experts/source_zh_cn/parallel/advanced_operator_parallel.md index 03f26db80e..59b9f919e9 100644 --- a/tutorials/experts/source_zh_cn/parallel/advanced_operator_parallel.md +++ b/tutorials/experts/source_zh_cn/parallel/advanced_operator_parallel.md @@ -39,7 +39,7 @@ layout = Layout((2, 2, 2), name = ("dp", "sp", "mp")) a_strategy = layout("mp", ("sp", "dp")) ``` -注意到在张量a的"[a0, a1, a2, a3]"进行了两次切分,切分到了设备的"sp"与"mp"两个轴上,这样出来的结果才是: +注意到在张量a的"[a0, a1, a2, a3]"进行了两次切分,切分到了设备的"sp"与"dp"两个轴上,这样出来的结果才是: ![image](images/advanced_operator_parallel_view1.PNG) -- Gitee