source: doc/theses/aaron_moss_PhD/phd/evaluation/cfa-plots.gp @ cf01d0b

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since cf01d0b was f1240b0, checked in by Aaron Moss <a3moss@…>, 5 years ago

thesis: strip CFA-DCA results, add speedup graph

  • Property mode set to 100644
File size: 1.3 KB
Line 
1# set terminal pdfcairo size 6,3
2# BUILD = "build/"
3set terminal pslatex size 6.25,2.5 color solid
4
5# RUNTIME #
6set output BUILD."cfa-time.tex"
7
8set xlabel "\\textsc{cfa-co} runtime (s)"
9set ylabel "runtime (s)"
10set logscale xy
11set key outside
12
13plot for [i=2:5] 'evaluation/cfa-time.tsv' using 2:i title columnheader
14
15# MEMORY #
16set output BUILD."cfa-mem.tex"
17
18set ylabel "peak memory (MB)"
19
20plot for [i=2:5] 'evaluation/cfa-mem-by-time.tsv' using 7:(column(i)/1000) title columnheader
21
22# SPEEDUP #
23set output BUILD."cfa-speedup.tex"
24
25set ylabel "speedup w.r.t. baseline"
26unset logscale y
27
28plot 'evaluation/cfa-time.tsv' using 2:(column(2)/column(2)) title 'baseline', \
29     '' using 2:(column(2)/column(3)) title columnheader, \
30         '' using 2:(column(3)/column(4)) title 'inter-round', \
31         '' using 2:(column(4)/column(5)) title columnheader
32
33# # RUNTIME SPEEDUP #
34# set output BUILD."cfa-speedup.pdf"
35
36# set ylabel "time factor of cfa-co"
37# unset logscale y
38
39# plot for [i=2:6] 'evaluation/cfa-time.tsv' using 2:(column(i)/column(2)) title columnheader
40
41# # MEMORY SPEEDUP #
42# set output BUILD."cfa-mem-speedup.pdf"
43
44# set ylabel "peak memory factor of cfa-co"
45# unset logscale y
46
47# plot for [i=2:6] 'evaluation/cfa-mem-by-time.tsv' using 7:(column(i)/column(2)) title columnheader
Note: See TracBrowser for help on using the repository browser.