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 a2971cc was 83a09648, checked in by Aaron Moss <a3moss@…>, 7 years ago |
|
thesis: Add CFA results to experiments section
|
-
Property mode
set to
100644
|
|
File size:
929 bytes
|
| 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 (ms)"
|
|---|
| 9 | set ylabel "runtime (ms)"
|
|---|
| 10 | set logscale xy
|
|---|
| 11 | set key outside
|
|---|
| 12 |
|
|---|
| 13 | plot for [i=2:6] '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: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.