Added presentation

This commit is contained in:
2019-05-01 10:46:15 +02:00
parent b99d519aa7
commit 569f924fe3
133 changed files with 168314 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
set terminal epslatex size 3.5,3
set output "perf2.tex"
set logscale y 10
set logscale x 10
set grid
set key box opaque bottom right samplen 0.75 spacing 0.9 width -8
set lmargin 5.2
set tmargin 0.5
set rmargin 0.5
#set xtics nomirror
#set ytics nomirror
set format x "\\footnotesize{$10^{%T}$}"
set format y "\\footnotesize{$10^{%T}$}"
set xlabel "\\footnotesize{number of grid points $G$}"
set ylabel "\\footnotesize{$t$ in seconds}" offset +2.7,0
#"perf/FastKDE.csv" using (column(1)**2):(column(2)) with lines lc rgb "#4E9A06" lw 2.0 title "\\footnotesize{FastKDE}",\
#"perf/BoxSIMD.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#FCAF3E" lw 2.0 dashtype 2 title "\\footnotesize{BoxKDE (SIMD)}",\
plot \
"perf/R.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#CC0000" lw 2.0 title "\\footnotesize{BKDE}",\
"perf/Box.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#FCAF3E" lw 2.0 title "\\footnotesize{BoxKDE}",\
"perf/WeightedAverage.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#3465A4" lw 2.0 title "\\footnotesize{weighted average}"
#FCAF3E
#CC0000
#4E9A06
#3465A4