12345678910111213141516171819202122 |
- #!/usr/bin/env bash
- # -------------------------------------------------------------------------
- # Copyright (c) 2021-2022, NVIDIA Corporation & Affiliates. All rights reserved.
- #
- # This work is made available under the Nvidia Source Code License.
- # To view a copy of this license, visit
- # https://github.com/NVlabs/GroupViT/blob/main/LICENSE
- #
- # Written by Jiarui Xu
- # -------------------------------------------------------------------------
- SCRIPT=$1
- CONFIG=$2
- RESUME=$3
- GPUS=$4
- PORT=${PORT:-29500}
- PYTHONPATH="$(dirname $0)/..":$PYTHONPATH \
- python -m torch.distributed.launch --nproc_per_node=$GPUS --master_port=$PORT \
- $SCRIPT --cfg $CONFIG --resume $RESUME ${@:5}
|