-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to run this on 8 GPUs #56
Comments
I encountered the same issue. Have you solved it? |
same problem; 4 gpus work; 8 gpus stuck |
2 gpus work; 4、8 gpus stuck |
I didn't check too many details, but modifying these two parameters works in my environment (8 80G GPUs):
|
same problem; 2, 4 gpus work; 8 gpus stuck |
it works on 8 gpus, thanks! |
The scripts are below, but the program is stuck when I run run.sh
How to run this code on 8 GPUs, if I want to use 7B or largger model?
(1) run.sh
export N_GPUS=8
export BASE_MODEL="/Qwen-3B-Instruct"
export DATA_DIR="/data"
export ROLLOUT_TP_SIZE=8
export EXPERIMENT_NAME=countdown-qwen2.5-3b-instruct
export VLLM_ATTENTION_BACKEND=XFORMERS
bash ./scripts/train_tiny_zero_h100_ppo.sh
(2) train_tiny_zero_h100_ppo.sh
python3 -m verl.trainer.main_ppo
data.train_files=$DATA_DIR/train.parquet
data.val_files=$DATA_DIR/test.parquet
data.train_batch_size=32
data.val_batch_size=32
data.max_prompt_length=512
data.max_response_length=2048
actor_rollout_ref.model.path=$BASE_MODEL
actor_rollout_ref.actor.optim.lr=1e-6
actor_rollout_ref.actor.ppo_mini_batch_size=64
actor_rollout_ref.actor.ppo_micro_batch_size=4
actor_rollout_ref.rollout.log_prob_micro_batch_size=4
actor_rollout_ref.rollout.tensor_model_parallel_size=$ROLLOUT_TP_SIZE
actor_rollout_ref.rollout.gpu_memory_utilization=0.4
actor_rollout_ref.ref.log_prob_micro_batch_size=2
critic.optim.lr=1e-5
critic.model.path=$BASE_MODEL
critic.ppo_micro_batch_size=4
algorithm.kl_ctrl.kl_coef=0.001
trainer.logger=['wandb']
+trainer.val_before_train=False
trainer.default_hdfs_dir=null
trainer.n_gpus_per_node=$N_GPUS
trainer.nnodes=1
trainer.save_freq=10
trainer.test_freq=10
trainer.project_name=TinyZero
trainer.experiment_name=$EXPERIMENT_NAME
trainer.total_epochs=15 2>&1 | tee verl_demo.log
The text was updated successfully, but these errors were encountered: