diff options
Diffstat (limited to 'src/tools/gnuplot/mem_lat.plot')
-rw-r--r-- | src/tools/gnuplot/mem_lat.plot | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/gnuplot/mem_lat.plot b/src/tools/gnuplot/mem_lat.plot new file mode 100644 index 0000000..db058f9 --- /dev/null +++ b/src/tools/gnuplot/mem_lat.plot @@ -0,0 +1,13 @@ +# file: mem_lat.plot + +set title "memory latency (different strides)" +set xlabel "array in KB" +set ylabel "cycles / access" + +set logscale x 2 + +plot "stride_32.txt" title "32" with linespoints, \ + "stride_64.txt" title "64" with linespoints, \ + "stride_128.txt" title "128" with linespoints, \ + "stride_256.txt" title "256" with linespoints, \ + "stride_512.txt" title "512" with linespoints |