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

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

thesis: Add CFA results to experiments section

  • Property mode set to 100644
File size: 929 bytes
RevLine 
[83a09648]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 (ms)"
9set ylabel "runtime (ms)"
10set logscale xy
11set key outside
12
13plot for [i=2:6] '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:6] 'evaluation/cfa-mem-by-time.tsv' using 7:(column(i)/1000) title columnheader
21
22# # RUNTIME SPEEDUP #
23# set output BUILD."cfa-speedup.pdf"
24
25# set ylabel "time factor of cfa-co"
26# unset logscale y
27
28# plot for [i=2:6] 'evaluation/cfa-time.tsv' using 2:(column(i)/column(2)) title columnheader
29
30# # MEMORY SPEEDUP #
31# set output BUILD."cfa-mem-speedup.pdf"
32
33# set ylabel "peak memory factor of cfa-co"
34# unset logscale y
35
36# 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.