Files
triton/bench/plot.gnuplot

8 lines
226 B
Plaintext
Raw Normal View History

2014-10-30 13:04:33 -04:00
set logscale x
2014-10-30 13:20:59 -04:00
set terminal pdf
set output 'saxpy.pdf'
2014-10-30 13:04:33 -04:00
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'