7 lines
116 B
Bash
7 lines
116 B
Bash
#! /bin/bash
|
|
|
|
NUM_GPUS=$1
|
|
shift
|
|
|
|
python -m torch.distributed.launch --nproc_per_node ${NUM_GPUS} run_dee_task.py $*
|