1 | # set terminal pdfcairo size 6.25,2.125 |
---|
2 | # set output "tests-completed.pdf" |
---|
3 | set terminal pslatex size 6.25,3.25 color solid |
---|
4 | set output BUILD."tests-completed.tex" |
---|
5 | |
---|
6 | set linetype 1 lc rgb 'black' |
---|
7 | set linetype 2 lc rgb 'red' |
---|
8 | set linetype 3 lc rgb 'blue' |
---|
9 | set linetype 4 lc rgb 'green' |
---|
10 | |
---|
11 | set style data histogram |
---|
12 | set style fill pattern 4 border lt -1 |
---|
13 | unset key |
---|
14 | set xtics rotate #by 45 offset -7.5,-4.5 |
---|
15 | |
---|
16 | # TESTS COMPLETED # |
---|
17 | set yrange [0:131] |
---|
18 | |
---|
19 | plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $2 : 1/0):xtic(1) with boxes, \ |
---|
20 | '' using ($5 == 2 ? $2 : 1/0):xtic(1) with boxes, \ |
---|
21 | '' using ($5 == 3 ? $2 : 1/0):xtic(1) with boxes |
---|
22 | |
---|
23 | # BU AVG. RUNTIME # |
---|
24 | set output BUILD."bu-runtime.tex" |
---|
25 | |
---|
26 | unset yrange |
---|
27 | set ylabel "ms" |
---|
28 | |
---|
29 | plot 'evaluation/bu-summary.dat' using 3:xtic(1) with boxes |
---|
30 | |
---|
31 | # AVG. RUNTIME # |
---|
32 | set output BUILD."avg-runtime.tex" |
---|
33 | |
---|
34 | plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $4 : 1/0):xtic(1) with boxes, \ |
---|
35 | '' using ($5 == 2 ? $4 : 1/0):xtic(1) with boxes, \ |
---|
36 | '' using ($5 == 3 ? $4 : 1/0):xtic(1) with boxes |
---|
37 | |
---|
38 | # BU AVG. PEAK MEMORY # |
---|
39 | set output BUILD."bu-peak-mem.tex" |
---|
40 | |
---|
41 | set ylabel "MB" |
---|
42 | |
---|
43 | plot 'evaluation/bu-summary.dat' using 2:xtic(1) with boxes |
---|
44 | |
---|
45 | # AVG. PEAK MEMORY # |
---|
46 | set output BUILD."avg-peak-mem.tex" |
---|
47 | |
---|
48 | set yrange [0:80] |
---|
49 | |
---|
50 | set label "125" at 18.25,82 |
---|
51 | set label "322" at 19.75,82 |
---|
52 | plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $3 : 1/0):xtic(1) with boxes, \ |
---|
53 | '' using ($5 == 2 ? $3 : 1/0):xtic(1) with boxes, \ |
---|
54 | '' using ($5 == 3 ? $3 : 1/0):xtic(1) with boxes |
---|