From 929556a7f38c0f043daf3125a817aaa152b51fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=A6=E6=99=93=E7=8E=B2?= <3174348550@qq.com> Date: Mon, 27 Oct 2025 14:49:15 +0800 Subject: [PATCH] add contents in startup method --- tutorials/source_en/parallel/startup_method.rst | 3 +++ tutorials/source_zh_cn/parallel/startup_method.rst | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tutorials/source_en/parallel/startup_method.rst b/tutorials/source_en/parallel/startup_method.rst index 9873e022f8..3ab8056c44 100644 --- a/tutorials/source_en/parallel/startup_method.rst +++ b/tutorials/source_en/parallel/startup_method.rst @@ -24,6 +24,9 @@ Currently GPU, Ascend and CPU support multiple startup methods respectively, fou - `mpirun `_: this method relies on the open source library OpenMPI, and startup command is simple. Multi-machine need to ensure two-by-two password-free login. It is recommended for users who have experience in using OpenMPI to use this startup method. - `rank table `_: this method requires the Ascend hardware platform and does not rely on third-party library. After manually configuring the rank_table file, you can start the parallel program via a script, and the script is consistent across multiple machines for easy batch deployment. +.. warning:: + `rank_table` method has been deprecated in MindSpore 2.4 version. + The hardware support for the four startup methods is shown in the table below: +-------------------------+--------------+-----------------+-------------+ diff --git a/tutorials/source_zh_cn/parallel/startup_method.rst b/tutorials/source_zh_cn/parallel/startup_method.rst index aaa7042735..5e1e08c3e0 100644 --- a/tutorials/source_zh_cn/parallel/startup_method.rst +++ b/tutorials/source_zh_cn/parallel/startup_method.rst @@ -24,6 +24,9 @@ - `mpirun `_:此方式依赖开源库OpenMPI,启动命令简单,多机需要保证两两之间免密登录,推荐有OpenMPI使用经验的用户使用此种启动方式。 - `rank table `_:此方式需要在Ascend硬件平台使用,不依赖第三方库。手动配置rank_table文件后,就可以通过脚本启动并行程序,多机脚本一致,方便批量部署。 +.. warning:: + `rank_table` 启动方式已在MindSpore 2.4版本废弃。 + 四种启动方式的硬件支持情况如下表: +-------------------------+--------------+-----------------+-------------+ -- Gitee