Added gnuplot scripts for dictisam timings, filesystems comparisons.
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 12 Dec 2006 13:54:33 +0000 (13:54 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 12 Dec 2006 13:54:33 +0000 (13:54 +0000)
isamb/Makefile.am
isamb/dictisam.plt [new file with mode: 0644]
isamb/filesystems.plt [new file with mode: 0644]

index c65ddb6..d94489d 100644 (file)
@@ -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 (file)
index 0000000..0bf4215
--- /dev/null
@@ -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 (file)
index 0000000..6acfd9f
--- /dev/null
@@ -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