MindSpore Scenarios (Based on MindFormers)
This section describes how to configure suspension and switchback of link failover communication. For details about its features, restrictions, supported products, and working principles, see Suspension and Switchback of Link Failover Communication.
Prerequisite
- Ascend Docker Runtime, Ascend Operator, ClusterD, Ascend Device Plugin, and Volcano have been installed on corresponding nodes. (The versions of the preceding MindCluster components must match the TaskD version.)
- MindSpore (≥ 2.7.0), CANN (≥ 8.2.RC1) TaskD, and MindIO (≥ 7.1.RC1) have been installed in the container.
Procedure
- After the distributed environment is initialized and the global rank can be obtained, modify the training script to start TaskD Manager, start TaskD Proxy in the management process, and start TaskD Worker in the training process.
- Start TaskD Manager.
- Create a manager.py file and save it to the directory where the training script is called. The content of the manager.py file is as follows:
from taskd.api import init_taskd_manager, start_taskd_manager import os job_id=os.getenv("MINDX_TASK_ID") node_nums=XX # Total number of nodes (set by yourself) proc_per_node=XX # Number of training processes on each node (set by yourself) init_taskd_manager({"job_id":job_id, "node_nums": node_nums, "proc_per_node": proc_per_node}) start_taskd_manager()
For details about the parameters in the manager.py file, see def init_taskd_manager(config:dict) -> bool:.
- Add the following code to the training script to start TaskD Manager.
export TASKD_PROCESS_ENABLE="on" if [[ "${MS_SCHED_HOST}" == "${POD_IP}" ]]; then python manager.py & # Determined by the current path. fi msrun ...
- Create a manager.py file and save it to the directory where the training script is called. The content of the manager.py file is as follows:
- Start TaskD Worker Add the following information in bold to the ./mindformers/trainer/base_trainer.py file.
def training_process( self, config: Optional[Union[dict, MindFormerConfig, ConfigArguments, TrainingArguments]] = None, network: Optional[Union[Cell, PreTrainedModel]] = None, dataset: Optional[Union[BaseDataset, GeneratorDataset]] = None, optimizer: Optional[Optimizer] = None, callbacks: Optional[Union[Callback, List[Callback]]] = None, compute_metrics: Optional[Union[dict, set]] = None, **kwargs): … … logger.info(".........Starting Training Model..........") if get_real_rank() % 8 == 0: pprint(config) logger.info(".........Model Compiling, Please Wait a Moment...........") try: rank = get_rank() from taskd.api.taskd_worker_api import init_taskd_worker from taskd.api.taskd_worker_api import start_taskd_worker init_taskd_worker(rank,5000,"ms") start_taskd_worker() except Exception as e: print("failed to call mindcluster taskd") model.train(config.runner_config.epochs, dataset, callbacks=callbacks, dataset_sink_mode=config.runner_config.sink_mode, sink_size=config.runner_config.sink_size, initial_epoch=config.runner_config.initial_epoch)
- Start TaskD Manager.
- Modify the training framework code and enable link failover.
Edit the QWEN3_for_MS_code/scripts/msrun_launcher.sh file and add the following information to the file.
export MS_ENABLE_TFT='{TTP:1,TSP:1}' # Enable dying gasp and link failover. export HCCL_OP_RETRY_ENABLE="L0:0, L1:1, L2:1" # This environment variable is used to configure whether to enable HCCL operator re-execution. Re-execution occurs when an SDMA or RDMA CQE error is reported during the execution of a communication operator. In this case, HCCL attempts to re-run the operator.
If the error message "the libtaskd.so has not been loaded" is displayed during training, import the environment variable LD_PRELOAD to the training script. This environment variable allows the system to load the specified .so file in advance. Example:
export LD_PRELOAD=/usr/local/Ascend/cann/lib64/libmspti.so:/usr/local/python3.10.5/lib/python3.10/site-packages/taskd/python/cython_api/libs/libtaskd.so
- libmspti.so: This .so file is provided by MindStudio and integrated in the CANN package. The default installation path is /usr/local/Ascend/cann/lib64/libmspti.so.
- libtaskd.so: This .so file is provided by TaskD. After the whl package is installed, the path is TaskD installation path/taskd/python/cython_api/libs/libtaskd.so.
You can run the following command to query the path where TaskD is located. The Location field in the command output is the target path.
pip show taskd
- Modify the job YAML file.Add the following fields in bold in a job YAML file to enable process-level online recovery and add port 9601 for TaskD communication to all pods.
... labels: ... fault-scheduling: "force" ... ... annotations: ... recover-strategy: "retry" # Recovery policy. retry indicates that process-level online recovery is enabled. ... ... spec: replicaSpecs: Master: template: spec: containers: - name: ascend # do not modify ... args: - | ... bash scripts/train_start.sh /job/code /job/output pretrain_gpt.py \ ... ports: - containerPort: 9601 name: taskd-port ... Worker: template: spec: containers: - name: ascend # do not modify ... args: - | ... bash scripts/train_start.sh /job/code /job/output pretrain_gpt.py \ ... ports: - containerPort: 9601 name: taskd-port ...