Better benchmarking

This commit is contained in:
Philippe Tillet
2014-10-30 13:04:33 -04:00
parent de48ccc7b1
commit 71b4bde3ec
2 changed files with 44 additions and 17 deletions

11
bench/plot.gnuplot Normal file
View File

@@ -0,0 +1,11 @@
set logscale x
set term wxt 1
plot "out.dat" i 0 using 1:2 with lines title 'Naive', \
"out.dat" i 0 using 1:3 with lines title 'Model', \
"out.dat" i 0 using 1:4 with lines title 'Optimal'
set term wxt 2
plot "out.dat" i 1 using 1:2 with lines title 'Naive', \
"out.dat" i 1 using 1:3 with lines title 'Model', \
"out.dat" i 1 using 1:4 with lines title 'Optimal'