view paper/figures/io/dragonfly/plot.sh @ 36:8d128c5feb47

add
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Sun, 15 Feb 2015 20:13:05 +0900
parents
children
line wrap: on
line source

#!/bin/sh
# EOFまで処理を続ける
gnuplot <<EOF
# postscript形式に指定
set terminal postscript eps color enhanced
# "sample.eps"として出力
#set output "word_count.eps"
set output "| epstopdf -f -o io_thread.pdf"
# x軸名を"SN ration"に設定
set xlabel "CPU"
# y軸名を"SER"に設定
set ylabel "ms"
# titleの設定
set title "WordCount Benchmark"
# x,yの範囲をどこからどこまでにするのか
set xrange [ 1 : 16 ]
set yrange [ 5 : 60]
# x,y軸のメモリを何ずつ刻むか
set xtics 1
set ytics 5
plot  "mmap" w l, "read" w l, "BlockedRead_speany" w l, "BlockedRead_io" w l
# 処理終了

EOF