-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrunall-dram.sh
42 lines (28 loc) · 1.02 KB
/
runall-dram.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
# Figure 4
python3 run_experiments.py bst 44 10000 auto [0,5,50] -f
# Figure 5
python3 run_experiments.py bst [1,6,12,18,24,30,36,42,48] 10000 auto 5
# Figure 6a
python3 run_experiments.py bst 44 10000 [auto,traverse,manual] 5
# Figures 6b and 8a
python3 run_experiments.py hash 44 10000 [auto,traverse,manual] 5
# Figures 6c and 8b
python3 run_experiments.py list 44 128 [auto,traverse,manual] 5
# Figure 6d
python3 run_experiments.py skiplist 44 10000 [auto,traverse,manual] 5
# Figure 7a
python3 run_experiments.py bst 44 10000 auto [0,5,50]
# Figure 7b
python3 run_experiments.py hash 44 10000 auto [0,5,50]
# Figure 7c
python3 run_experiments.py list 44 128 auto [0,5,50]
# Figure 7d
python3 run_experiments.py skiplist 44 10000 auto [0,5,50]
# Figure 7e
python3 run_experiments.py bst 44 10000000 auto [0,5,50]
# Figure 7f
python3 run_experiments.py hash 44 10000000 auto [0,5,50]
# Figure 7g
python3 run_experiments.py list 44 4000 auto [0,5,50]
# Figure 7h
python3 run_experiments.py skiplist 44 10000000 auto [0,5,50]