forked from undertherain/benchmarker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.sh
More file actions
executable file
·28 lines (21 loc) · 1.05 KB
/
launch.sh
File metadata and controls
executable file
·28 lines (21 loc) · 1.05 KB
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
#!/bin/sh
#/work/alex/data/DL_perf/json
problem=--problem=conv2d_1
gpus=--gpus=1
python3 benchmarker.py --framework=theano ${problem} ${gpus}
python3 benchmarker.py --framework=tensorflow ${problem} ${gpus}
python3 benchmarker.py --framework=chainer ${problem} ${gpus}
python3 benchmarker.py --framework=mxnet ${problem} ${gpus}
problem=--problem=conv2d_2
python3 benchmarker.py --framework=theano ${problem} ${gpus}
python3 benchmarker.py --framework=tensorflow ${problem} ${gpus}
python3 benchmarker.py --framework=chainer ${problem} ${gpus}
python3 benchmarker.py --framework=mxnet ${problem} ${gpus}
problem=--problem=conv3d_1
python3 benchmarker.py --framework=theano ${problem} ${gpus}
python3 benchmarker.py --framework=tensorflow ${problem} ${gpus}
python3 benchmarker.py --framework=chainer ${problem} ${gpus}
python3 benchmarker.py --framework=mxnet ${problem} ${gpus}
#python3 benchmarker.py --framework=theano --problem=conv2d_1
#python3 benchmarker.py --framework=theano --problem=conv2d_2
#python3 benchmarker.py --framework=theano --problem=conv3d_1