source: doc/theses/aaron_moss_PhD/phd/evaluation/algo-summary.gp @ 72b20c9

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 72b20c9 was 72b20c9, checked in by Aaron Moss <a3moss@…>, 5 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"
3set terminal pslatex size 6.25,3.25 color solid
4set output BUILD."tests-completed.tex"
5
6set linetype 1 lc rgb 'black'
7set linetype 2 lc rgb 'red'
8set linetype 3 lc rgb 'blue'
9set linetype 4 lc rgb 'green'
10
11set style data histogram
12set style fill pattern 4 border lt -1
13unset key
14set xtics rotate #by 45 offset -7.5,-4.5
15
16# TESTS COMPLETED #
17set yrange [0:]
18
19plot 'evaluation/algo-summary.dat' using 2:xtic(1) with boxes
20
21# BU AVG. RUNTIME #
22set output BUILD."bu-runtime.tex"
23
24unset yrange
25set ylabel "ms"
26
27plot 'evaluation/bu-summary.dat' using 3:xtic(1) with boxes
28
29# AVG. RUNTIME #
30set output BUILD."avg-runtime.tex"
31
32plot 'evaluation/algo-summary.dat' using 4:xtic(1) with boxes
33
34# BU AVG. PEAK MEMORY #
35set output BUILD."bu-peak-mem.tex"
36
37set ylabel "MB"
38
39plot 'evaluation/bu-summary.dat' using 2:xtic(1) with boxes
40
41# AVG. PEAK MEMORY #
42set output BUILD."avg-peak-mem.tex"
43
44set yrange [0:80]
45
46set label "125" at 6.25,82
47set label "322" at 7.75,82
48plot 'evaluation/algo-summary.dat' using 3:xtic(1) with boxes
Note: See TracBrowser for help on using the repository browser.