view paper/figures/io/plot.sh @ 20:2483927789ed

add file
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Fri, 13 Feb 2015 09:30:02 +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"
# x軸名を"SN ration"に設定
set xlabel "CPU"
# y軸名を"SER"に設定
set ylabel "ms"
# titleの設定
set title "WordCount Benchmark"
# x,yの範囲をどこからどこまでにするのか
set xrange [ 1 : 6 ]
set yrange [ 0 : 75]
# x,y軸のメモリを何ずつ刻むか
set xtics 1
set ytics 5
plot  "mmap" w l,"read" w l,"bread&SPE_ANY" w l,"bread&IO_0" w l,
# 処理終了
EOF