X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=doc%2Fcharts%2Fchart1.gnuplot;fp=doc%2Fcharts%2Fchart1.gnuplot;h=f4ba07fc0702c111886166373f61c8424ce86a44;hb=078ff4840f2024d159a77080e966c7133517c908;hp=0000000000000000000000000000000000000000;hpb=3d0b454c857586f3b5e5d35df2d7de709353a6f2;p=nestedvm.git diff --git a/doc/charts/chart1.gnuplot b/doc/charts/chart1.gnuplot new file mode 100644 index 0000000..f4ba07f --- /dev/null +++ b/doc/charts/chart1.gnuplot @@ -0,0 +1,23 @@ +# don't touch this +set terminal postscript landscape color "Helvetica" 19 +set output 'unfilled.eps' + +set yrange [0:300] +set xrange [1.8:4.5] +set data style boxes +set boxwidth 0.4 +set xtics (" " 3) +set xlabel "X Axis Label" +set ylabel "Y Axis Label" +set grid +set label "59" at 2.15, 69 +set label "97" at 2.55, 107 +set label "159" at 2.95, 169 +set label "256" at 3.35, 266 +plot \ + 'chart1.dat' using ($1-0.8):($2) title "x86", \ + 'chart1.dat' using ($1-0.4):($3) title "Sparc", \ + 'chart1.dat' using ($1):($4) title "HPL-PD", \ + 'chart1.dat' using ($1+0.4):($5) title "Canonical" + +