From a5c6986e3ee08c4d7c008e9847655cc60a6e824c Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 11 May 2004 05:11:27 -0700 Subject: [PATCH] linpack chart (char11) darcs-hash:20040511121127-24bed-4952019a828c4846d8c52019455df2c645a17352.gz --- doc/charts/chart11.dat | 3 +++ doc/charts/chart11.gnuplot | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 doc/charts/chart11.dat create mode 100644 doc/charts/chart11.gnuplot diff --git a/doc/charts/chart11.dat b/doc/charts/chart11.dat new file mode 100644 index 0000000..8ddb026 --- /dev/null +++ b/doc/charts/chart11.dat @@ -0,0 +1,3 @@ +1.6 6.368 +3.4 87.946 +5.2 39.44 diff --git a/doc/charts/chart11.gnuplot b/doc/charts/chart11.gnuplot new file mode 100644 index 0000000..ff557c0 --- /dev/null +++ b/doc/charts/chart11.gnuplot @@ -0,0 +1,15 @@ +# don't touch this +set terminal postscript landscape color "Helvetica" 19 +set output 'unfilled.eps' + +set yrange [0:90] +set xrange [1:5.8] +set data style boxes +set boxwidth 0.8 +set xtics ("Native" 1.6, "NestedVM -> GCJ" 3.4, "NestedVM" 5.2) +#set xlabel "" +set title "Native/GCJ/Hotspot Linpack" +set ylabel "Seconds" +set grid +plot \ + 'chart11.dat' using ($1):($2) title "" -- 1.7.10.4