ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since a6f991f was 72b20c9, checked in by Aaron Moss <a3moss@…>, 7 years ago |
thesis: Add charts and discussion of summary results for different algorithms
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
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:]
|
---|
18 |
|
---|
19 | plot 'evaluation/algo-summary.dat' using 2:xtic(1) with boxes
|
---|
20 |
|
---|
21 | # BU AVG. RUNTIME #
|
---|
22 | set output BUILD."bu-runtime.tex"
|
---|
23 |
|
---|
24 | unset yrange
|
---|
25 | set ylabel "ms"
|
---|
26 |
|
---|
27 | plot 'evaluation/bu-summary.dat' using 3:xtic(1) with boxes
|
---|
28 |
|
---|
29 | # AVG. RUNTIME #
|
---|
30 | set output BUILD."avg-runtime.tex"
|
---|
31 |
|
---|
32 | plot 'evaluation/algo-summary.dat' using 4:xtic(1) with boxes
|
---|
33 |
|
---|
34 | # BU AVG. PEAK MEMORY #
|
---|
35 | set output BUILD."bu-peak-mem.tex"
|
---|
36 |
|
---|
37 | set ylabel "MB"
|
---|
38 |
|
---|
39 | plot 'evaluation/bu-summary.dat' using 2:xtic(1) with boxes
|
---|
40 |
|
---|
41 | # AVG. PEAK MEMORY #
|
---|
42 | set output BUILD."avg-peak-mem.tex"
|
---|
43 |
|
---|
44 | set yrange [0:80]
|
---|
45 |
|
---|
46 | set label "125" at 6.25,82
|
---|
47 | set label "322" at 7.75,82
|
---|
48 | plot 'evaluation/algo-summary.dat' using 3:xtic(1) with boxes
|
---|
Note:
See
TracBrowser
for help on using the repository browser.