From 16a3691d935984ed491d6f163ae06f471e5916d3 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Mon, 17 May 2010 14:14:47 +0200 Subject: [PATCH] Script to combine the stats of two runs --- perf/bash/plot_combine_runs.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 perf/bash/plot_combine_runs.sh diff --git a/perf/bash/plot_combine_runs.sh b/perf/bash/plot_combine_runs.sh new file mode 100644 index 0000000..e2a6665 --- /dev/null +++ b/perf/bash/plot_combine_runs.sh @@ -0,0 +1,7 @@ +echo set terminal pdf +echo set output \"combined_init.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:2 title 'init(marcxml)', '../run_20100511_152140/range.stat' using 1:2 title 'init(turbomarc)' " +echo set output \"combined_search.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:3 title 'search(marcxml)', '../run_20100511_152140/range.stat' using 1:3 title 'search(turbomarc)' " +echo set output \"combined_show.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:4 title 'show(marcxml)', '../run_20100511_152140/range.stat' using 1:4 title 'show(turbomarc)' " -- 1.7.10.4