Files
triton/bench/plot.gnuplot

17 lines
437 B
Plaintext
Raw Normal View History

2014-10-30 13:20:59 -04:00
set terminal pdf
2014-11-06 07:07:27 -05:00
set output 'bench.pdf'
set xlabel 'N'
set ylabel 'Bandwidth (GB/s)'
set key top left
stats "out.dat" nooutput
set logscale x
do for [i=1:STATS_blocks]{
plot "out.dat" index (i-1) using 1:2 with lines title 'ViennaCL', \
2014-11-06 07:07:27 -05:00
"out.dat" index (i-1) using 1:3 with lines title 'Model', \
"out.dat" index (i-1) using 1:4 with lines title 'Optimal', \
"out.dat" index (i-1) using 1:5 with lines title 'CuBLAS'
2014-11-06 07:07:27 -05:00
}