openmp.gnuplot (1052B)
1 set terminal svg dynamic size 1080*1.9, 1080 round enhanced font 'Liberation Serif, 12' 2 set output "build/gnuplot/openmp.svg" 3 set border 1+2 4 load 'gnuplot/rdbu.pal' 5 set xtics nomirror out 6 set ytics nomirror out 7 set yrange [0:*] 8 set multiplot layout 3,3 9 s = 1e-3 10 set xlabel 'No. of threads' 11 set ylabel 'Time, ms' 12 set yrange [0:50000] 13 plot 'data/openmp-aurora-laptop.dat' using 1:($2*s) with lines ls 1 lw 2 14 plot 'data/openmp-aurora-capybara.dat' using 1:($2*s) with lines ls 1 lw 2 15 plot 'data/openmp-aurora-gpulab.dat' using 1:($2*s) with lines ls 1 lw 2 16 #set yrange [0:35000] 17 plot 'data/openmp-diogen-laptop.dat' using 1:($2*s) with lines ls 1 lw 2 18 plot 'data/openmp-diogen-capybara.dat' using 1:($2*s) with lines ls 1 lw 2 19 plot 'data/openmp-diogen-gpulab.dat' using 1:($2*s) with lines ls 1 lw 2 20 #set yrange [0:1200] 21 plot 'data/openmp-micw-laptop.dat' using 1:($2*s) with lines ls 1 lw 2 22 plot 'data/openmp-micw-capybara.dat' using 1:($2*s) with lines ls 1 lw 2 23 plot 'data/openmp-micw-gpulab.dat' using 1:($2*s) with lines ls 1 lw 2 24