summaryrefslogtreecommitdiffstats
path: root/evaluation.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-04-11 16:55:40 +0100
committerYann Herklotz <git@yannherklotz.com>2021-04-11 16:55:51 +0100
commit1e8ae9edaefdd8aed2747954c1f966f0264ea184 (patch)
tree32437b07b5e724e5a87791cae740b2e436069738 /evaluation.tex
parentf1e4ebdba3c05e1c5d83eeb338c62fc3227b1a1a (diff)
downloadoopsla21_fvhls-1e8ae9edaefdd8aed2747954c1f966f0264ea184.tar.gz
oopsla21_fvhls-1e8ae9edaefdd8aed2747954c1f966f0264ea184.zip
Add cycle count plot
Diffstat (limited to 'evaluation.tex')
-rw-r--r--evaluation.tex12
1 files changed, 10 insertions, 2 deletions
diff --git a/evaluation.tex b/evaluation.tex
index 2e08031..5130b9a 100644
--- a/evaluation.tex
+++ b/evaluation.tex
@@ -28,12 +28,20 @@ We configured Polybench's parameters so that only integer types are used, since
\begin{figure}\centering
\begin{tikzpicture}
\begin{axis}[
- visualization depends on={value \thisrow{Name} \as \labela},
+ ybar=0pt,
width=1\textwidth,
height=0.5\textwidth,
+ bar width=2pt,
+ ymin=0,
+ xmin=-0.5,
+ xmax=25.5,
]
- \addplot[] table [x=benchmark,y=cycles,col sep=comma] {results/benchmark_results/vericert.csv};
+ \addplot+ table [x expr=\coordindex,y=cycles,col sep=comma] {results/benchmark_results/legup_opt.csv};
+ \addplot+ table [x expr=\coordindex,y=cycles,col sep=comma] {results/benchmark_results/legup_no_chain.csv};
+ \addplot+ table [x expr=\coordindex,y=cycles,col sep=comma] {results/benchmark_results/legup_no_opt.csv};
+ \addplot+ table [x expr=\coordindex,y=cycles,col sep=comma] {results/benchmark_results/legup_no_opt_no_chain.csv};
+ \addplot+ table [x expr=\coordindex,y=cycles,col sep=comma] {results/benchmark_results/vericert.csv};
\end{axis}
\end{tikzpicture}