#! /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 key bottom right set output "dev-connection-time.pdf" set xlabel "#hits" set ylabel "Time, s" plot [][] \ "exp-06.csv" u 1:2 title "Host streams, 8 connections",\ "exp-06.csv" u 1:6 title "Host streams, 16 connections",\ "exp-06.csv" u 1:10 title "Host streams, 24 connections",\ "exp-06.csv" u 1:14 title "Host streams, 32 connections" set output "dev-connection-perf.pdf" set xlabel "#hits" set ylabel "Performance, Mhits/s" plot [][] \ "exp-06.csv" u 1:3 title "Host streams, 8 connections",\ "exp-06.csv" u 1:7 title "Host streams, 16 connections",\ "exp-06.csv" u 1:11 title "Host streams, 24 connections",\ "exp-06.csv" u 1:15 title "Host streams, 32 connections"