forked from microsoft/CvT
-
Notifications
You must be signed in to change notification settings - Fork 3
/
run-alt.sh
85 lines (76 loc) · 1.63 KB
/
run-alt.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/bash
train() {
torchrun --nnodes ${NODE_COUNT} \
--node_rank ${RANK} \
--master_addr ${MASTER_ADDR} \
--master_port ${MASTER_PORT} \
--nproc_per_node ${GPUS} \
tools/train.py ${EXTRA_ARGS}
}
test() {
torchrun --nnodes ${NODE_COUNT} \
--node_rank ${RANK} \
--master_addr ${MASTER_ADDR} \
--master_port ${MASTER_PORT} \
--nproc_per_node ${GPUS} \
tools/test.py ${EXTRA_ARGS}
}
############################ Main #############################
GPUS=${GPU_PER_NODE_COUNT:=1}
MASTER_PORT=${MASTER_PORT:=9000}
INSTALL_DEPS=false
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-h|--help)
echo "Usage: $0 [run_options]"
echo "Options:"
echo " -g|--gpus <1> - number of gpus to be used"
echo " -t|--job-type <train> - job type (train|io|bit_finetune|test)"
echo " -p|--port <9000> - master port"
echo " -i|--install-deps - If install dependencies (default: False)"
exit 1
;;
-g|--gpus)
GPUS=$2
shift
;;
-t|--job-type)
JOB_TYPE=$2
shift
;;
-p|--port)
MASTER_PORT=$2
shift
;;
-i|--install-deps)
INSTALL_DEPS=true
;;
*)
EXTRA_ARGS="$EXTRA_ARGS $1"
;;
esac
shift
done
if $INSTALL_DEPS; then
python -m pip install -r requirements.txt --user -q
fi
RANK=${RANK:=0}
MASTER_ADDR=${MASTER_ADDR:=127.0.0.1}
NODE_COUNT=${NODE_COUNT:=1}
echo "job type: ${JOB_TYPE}"
echo "rank: ${RANK}"
echo "node count: ${NODE_COUNT}"
echo "master addr: ${MASTER_ADDR}"
case $JOB_TYPE in
train)
train
;;
test)
test
;;
*)
echo "unknown job type"
;;
esac