Spaces:
Runtime error
Runtime error
| set -x | |
| export PYTHONPATH=`pwd`:$PYTHONPATH | |
| PARTITION=$1 | |
| JOB_NAME=$2 | |
| CONFIG=$3 | |
| CHECKPOINT=$4 | |
| GPUS=${GPUS:-8} | |
| GPUS_PER_NODE=${GPUS_PER_NODE:-8} | |
| PY_ARGS=${@:5} | |
| SRUN_ARGS=${SRUN_ARGS:-""} | |
| srun -p ${PARTITION} \ | |
| --job-name=${JOB_NAME} \ | |
| --gres=gpu:${GPUS_PER_NODE} \ | |
| --ntasks=${GPUS} \ | |
| --ntasks-per-node=${GPUS_PER_NODE} \ | |
| --kill-on-bad-exit=1 \ | |
| ${SRUN_ARGS} \ | |
| python -u tools/test.py ${CONFIG} ${CHECKPOINT} --launcher="slurm" ${PY_ARGS} | |