26c2795edef57c7d395f8b1553cb35b1a1b453a2
[bluesky.git] / results / figures / syn-read.gnuplot
1 load "common.gnuplot"
2
3 set grid
4 set xlabel "Proxy Cache Size (% Working Set)"
5 set ylabel "Read Latency (ms)"
6 set xrange [0:100]
7
8 set output "syn-read-1.eps"
9 set title "Single-Client Request Stream"
10 set key top right
11 plot "../20110318-synread/32k-c1.data" using (100*$1/32):4 with linespoints title "32 KB", \
12      "../20110318-synread/128k-c1.data" using (100*$1/32):4 with linespoints title "128 KB", \
13      "../20110318-synread/1024k-c1.data" using (100*$1/32):4 with linespoints title "1024 KB"
14
15 # set output "syn-read-16.eps"
16 # set title "16 Concurrent Request Streams"
17 # set key top left
18 # plot "../20110316-synread/32k-c16.data" using (100*$1/32):4 with linespoints title "32 KB", \
19 #      "../20110316-synread/128k-c16.data" using (100*$1/32):4 with linespoints title "128 KB", \
20 #      "../20110316-synread/1024k-c16.data" using (100*$1/32):4 with linespoints title "1024 KB"
21
22 set ylabel "Read Bandwidth (MB/s)"
23 set output "syn-read-1b.eps"
24 set title "Single-Client Request Stream"
25 set key top left
26 plot "../20110318-synread/32k-c1.data" using (100*$1/32):3 with linespoints title "32 KB", \
27      "../20110318-synread/128k-c1.data" using (100*$1/32):3 with linespoints title "128 KB", \
28      "../20110318-synread/1024k-c1.data" using (100*$1/32):3 with linespoints title "1024 KB"
29
30 # set output "syn-read-16b.eps"
31 # set title "16 Concurrent Request Streams"
32 # set key top right
33 # plot "../20110316-synread/32k-c16.data" using (100*$1/32):3 with linespoints title "32 KB", \
34 #      "../20110316-synread/128k-c16.data" using (100*$1/32):3 with linespoints title "128 KB", \
35 #      "../20110316-synread/1024k-c16.data" using (100*$1/32):3 with linespoints title "1024 KB"