Files
OpenPCDet/tools/scripts/dist_test.sh

8 lines
152 B
Bash
Raw Normal View History

2025-09-21 20:19:36 +08:00
#!/usr/bin/env bash
set -x
NGPUS=$1
PY_ARGS=${@:2}
python -m torch.distributed.launch --nproc_per_node=${NGPUS} test.py --launcher pytorch ${PY_ARGS}