From: Adam Dickmeiss Date: Tue, 12 Dec 2006 13:54:33 +0000 (+0000) Subject: Added gnuplot scripts for dictisam timings, filesystems comparisons. X-Git-Tag: ZEBRA.2.0.8~33 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=7e774be25a0c4791a9fb196389ac6d4f9f40a113 Added gnuplot scripts for dictisam timings, filesystems comparisons. --- diff --git a/isamb/Makefile.am b/isamb/Makefile.am index c65ddb6..d94489d 100644 --- a/isamb/Makefile.am +++ b/isamb/Makefile.am @@ -1,11 +1,12 @@ -## $Id: Makefile.am,v 1.16 2006-12-10 21:00:56 adam Exp $ +## $Id: Makefile.am,v 1.17 2006-12-12 13:54:33 adam Exp $ noinst_LTLIBRARIES = libidzebra-isamb.la noinst_PROGRAMS = benchisamb benchindex1 check_PROGRAMS = tstisamb -EXTRA_DIST = bench1.sh bench1.plt bench2.sh bench2.plt +EXTRA_DIST = bench1.sh bench1.plt bench2.sh bench2.plt \ + filesystems.plt dictisam.plt TESTS = $(check_PROGRAMS) diff --git a/isamb/dictisam.plt b/isamb/dictisam.plt new file mode 100644 index 0000000..0bf4215 --- /dev/null +++ b/isamb/dictisam.plt @@ -0,0 +1,11 @@ +# $Id: dictisam.plt,v 1.1 2006-12-12 13:54:33 adam Exp $ +# Plot isam + isamb times from output of benchindex1 +set terminal x11 +#set terminal postscript eps +#set output "dictisam.eps" +set xlabel "Run" +set ylabel "time (seconds)" +plot "4.jfs.dat" title "jfs 4" with lines, \ + "4.jfs.dat" using 1:3 title "jfs 4 dict" with lines, \ + "4.jfs.dat" using 1:6 title "jfs 4 isam" with lines +pause 60 diff --git a/isamb/filesystems.plt b/isamb/filesystems.plt new file mode 100644 index 0000000..6acfd9f --- /dev/null +++ b/isamb/filesystems.plt @@ -0,0 +1,12 @@ +# $Id: filesystems.plt,v 1.1 2006-12-12 13:54:33 adam Exp $ +# Inspect benchindex1 times with different filesystems +set terminal x11 +# set terminal postscript eps +# set output "filesystems.eps" +set xlabel "Run" +set ylabel "time (seconds)" +plot "ext3.dat" title "ext3" smooth acsplines,\ + "jfs.dat" title "jfs" smooth acsplines, \ + "reiser.dat" title "reiser" smooth acsplines + +pause 60