#! /usr/bin/env gnuplot # #device connections for hstream approache set terminal pdf enhanced color font ",10" set pointsize 0.65 #set style data linespoints set style data lines set output "hthreads-dev-connection-time.pdf" set xlabel "#hits" set ylabel "Time, s" plot [][] \ "exp-07.csv" u 1:2 title "Joined kernel",\ "exp-07.csv" u 1:4 title "Host streams",\ "exp-07.csv" u 1:6 title "Host threads, 6 threads",\ "exp-07.csv" u 1:8 title "Host threads, 12 threads",\ "exp-07.csv" u 1:12 title "Host threads, 24 threads",\ "exp-07.csv" u 1:20 title "Host threads, 48 threads" set output "hthreads-dev-connection-perf.pdf" set xlabel "#hits" set ylabel "Performance, Mhits/s" plot [][] \ "exp-07.csv" u 1:3 title "Joined kernel",\ "exp-07.csv" u 1:5 title "Host streams",\ "exp-07.csv" u 1:7 title "Host threads, 6 threads",\ "exp-07.csv" u 1:9 title "Host threads, 12 threads",\ "exp-07.csv" u 1:13 title "Host threads, 24 threads",\ "exp-07.csv" u 1:21 title "Host threads, 48 threads"