-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrun.sh
executable file
·32 lines (32 loc) · 1.49 KB
/
run.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
make clean
make
echo "int_1:" >> res.txt
bunzip2 -kc ../traces/int_1.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/int_1.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/int_1.bz2 | ./predictor --custom >> res.txt
echo "======" >> res.txt
echo "int_2:" >> res.txt
bunzip2 -kc ../traces/int_2.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/int_2.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/int_2.bz2 | ./predictor --custom >> res.txt
echo "======"
echo "fp_1:" >> res.txt
bunzip2 -kc ../traces/fp_1.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/fp_1.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/fp_1.bz2 | ./predictor --custom >> res.txt
echo "======"
echo "fp_2:" >> res.txt
bunzip2 -kc ../traces/fp_2.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/fp_2.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/fp_2.bz2 | ./predictor --custom>> res.txt
echo "======"
echo "mm_1:" >> res.txt
bunzip2 -kc ../traces/mm_1.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/mm_1.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/mm_1.bz2 | ./predictor --custom >> res.txt
echo "======"
echo "mm_2:" >> res.txt
bunzip2 -kc ../traces/mm_2.bz2 | ./predictor --gshare:12 >> res.txt
bunzip2 -kc ../traces/mm_2.bz2 | ./predictor --tournament:14:12:14 >> res.txt
bunzip2 -kc ../traces/mm_2.bz2 | ./predictor --custom >> res.txt
echo "======"