From 4ef20fc4f9560388fb21a5df994a39ac22237971 Mon Sep 17 00:00:00 2001 From: huan <3174348550@qq.com> Date: Fri, 13 Jun 2025 15:15:14 +0800 Subject: [PATCH] modify contents 2.3.0rc2 --- .../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 9fcff09b37..d383dde1fb 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.0rc2/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 7f64044295..a6526ab458 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