Switch to torchrun as old launcher changed arg names in 2.0.. Fix #1728

This commit is contained in:
Ross Wightman 2023-03-20 08:15:40 -07:00
parent 49b9c3be80
commit 2054f11c6f

View File

@ -1,5 +1,5 @@
#!/bin/bash
NUM_PROC=$1
shift
python3 -m torch.distributed.launch --nproc_per_node=$NUM_PROC train.py "$@"
torchrun --nproc-per-node=$NUM_PROC train.py "$@"