Last change
on this file since 930a800 was
f1240b0,
checked in by Aaron Moss <a3moss@…>, 6 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/" |
---|
3 | set terminal pslatex size 6.25,2.5 color solid |
---|
4 | |
---|
5 | # RUNTIME # |
---|
6 | set output BUILD."cfa-time.tex" |
---|
7 | |
---|
8 | set xlabel "\\textsc{cfa-co} runtime (s)" |
---|
9 | set ylabel "runtime (s)" |
---|
10 | set logscale xy |
---|
11 | set key outside |
---|
12 | |
---|
13 | plot for [i=2:5] 'evaluation/cfa-time.tsv' using 2:i title columnheader |
---|
14 | |
---|
15 | # MEMORY # |
---|
16 | set output BUILD."cfa-mem.tex" |
---|
17 | |
---|
18 | set ylabel "peak memory (MB)" |
---|
19 | |
---|
20 | plot for [i=2:5] 'evaluation/cfa-mem-by-time.tsv' using 7:(column(i)/1000) title columnheader |
---|
21 | |
---|
22 | # SPEEDUP # |
---|
23 | set output BUILD."cfa-speedup.tex" |
---|
24 | |
---|
25 | set ylabel "speedup w.r.t. baseline" |
---|
26 | unset logscale y |
---|
27 | |
---|
28 | plot '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.