-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench.sh
executable file
·35 lines (30 loc) · 1.05 KB
/
bench.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
#! /bin/bash
set -x
CONFIGS=results/'configs.300.unique.2.ssd.resetviewer.noresetfuse.json'
python genConfs.py --disk='ssd' --cores=2 --configTable=$CONFIGS
for run in {1..1};
do
python measure.py --iipReqs=iipReqs.unique --configTable=$CONFIGS -g -vvv
done
#mv $CONFIGS results
CONFIGS=results/'configs.300.dup.2.ssd.resetviewer.noresetfuse.json'
python genConfs.py --disk='ssd' --cores=2 --configTable=$CONFIGS
for run in {1..1};
do
python measure.py --iipReqs=iipReqs.dup --configTable=$CONFIGS -g -vvv
done
#mv $CONFIGS results
CONFIGS=results/'configs.300.unique.2.ssd.noresetviewer.resetfuse.json'
python genConfs.py --disk='ssd' --cores=2 --configTable=$CONFIGS
for run in {1..1};
do
python measure.py --iipReqs=iipReqs.unique --configTable=$CONFIGS -d -vvv
done
#mv $CONFIGS results
CONFIGS=results/'configs.300.dup.2.ssd.noresetviewer.resetfuse.json'
python genConfs.py --disk='ssd' --cores=2 --configTable=$CONFIGS
for run in {1..1};
do
python measure.py --iipReqs=iipReqs.dup --configTable=$CONFIGS -d -vvv
done
#mv $CONFIGS results