view paper/figures/io/plot.sh @ 79:7990a2abbf05 default tip

add file
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Mon, 02 Mar 2015 11:21:40 +0900
parents 2483927789ed
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