-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathrun_benchmark.sh
More file actions
49 lines (41 loc) · 1005 Bytes
/
run_benchmark.sh
File metadata and controls
49 lines (41 loc) · 1005 Bytes
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
#!/bin/bash
set -x
function main {
init_params "$@"
run_benchmark
}
# init params
function init_params {
for var in "$@"
do
case $var in
--input_model=*)
input_model=$(echo "$var" |cut -f2 -d=)
;;
--dataset_location=*)
dataset_location=$(echo "$var" |cut -f2 -d=)
;;
--label_path=*)
label_path=$(echo "$var" |cut -f2 -d=)
;;
--mode=*)
mode=$(echo "$var" |cut -f2 -d=)
;;
--intra_op_num_threads=*)
intra_op_num_threads=$(echo "$var" |cut -f2 -d=)
;;
esac
done
}
# run_benchmark
function run_benchmark {
python main.py \
--model_path "${input_model}" \
--dataset_location "${dataset_location}" \
--label_path "${label_path-${dataset_location}/../val.txt}" \
--mode "${mode}" \
--batch_size 1 \
--intra_op_num_threads "${intra_op_num_threads-4}" \
--benchmark
}
main "$@"