forked from kevinlewi/mmap-experiments
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrunall.sh
81 lines (77 loc) · 1.95 KB
/
runall.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
#!/usr/bin/env bash
small=40
big=80
# obfuscation
echo "**************************************************************"
echo "* Running obfuscation experiments *"
echo "**************************************************************"
echo "CLT $small 6-16 0"
./obf-experiments/point.sh CLT $small 6-16 0
echo "CLT $small 7-29 0"
./obf-experiments/point.sh CLT $small 7-29 0
echo "CLT $big 8-27 0"
./obf-experiments/point.sh CLT $big 8-27 0
echo "GGH $small 9-13 0"
./obf-experiments/point.sh GGH $small 9-13 0
echo "GGH $small 6-31 0"
./obf-experiments/point.sh GGH $small 6-31 0
# ore experiments
echo "**************************************************************"
echo "* Running ORE experiments *"
echo "**************************************************************"
pushd mife-experiments
echo "CLT $small 4 18 1"
./run-ore.sh CLT $small 4 18 1
du -h
./clean.sh
echo "CLT $small 4 21 1"
./run-ore.sh CLT $small 4 21 1
du -h
./clean.sh
echo "GGH $small 4 18 1"
./run-ore.sh GGH $small 4 18 1
du -h
./clean.sh
echo "GGH $small 4 21 1"
./run-ore.sh GGH $small 4 21 1
du -h
./clean.sh
echo "CLT $big 4 18 1"
./run-ore.sh CLT $big 4 18 1
du -h
./clean.sh
echo "CLT $big 4 21 1"
./run-ore.sh CLT $big 4 21 1
du -h
./clean.sh
echo "GGH $big 4 18 0"
./run-ore.sh GGH $big 4 18 0
du -h
./clean.sh
echo "GGH $big 5 19 0"
./run-ore.sh GGH $big 5 19 0
du -h
./clean.sh
popd
# 3dnf experiments
echo "**************************************************************"
echo "* Running 3DNF experiments *"
echo "**************************************************************"
pushd mife-experiments
echo "CLT $small 4 16 1"
./run-3dnf.sh CLT $small 4 16 1
du -h
./clean.sh
echo "CLT $big 4 16 1"
./run-3dnf.sh CLT $big 4 16 1
du -h
./clean.sh
echo "GGH $small 4 16 0"
./run-3dnf.sh GGH $small 4 16 0
du -h
./clean.sh
echo "GGH $big 4 16 0"
./run-3dnf.sh GGH $big 4 16 0
du -h
./clean.sh
popd