From: Adam Dickmeiss Date: Sun, 10 Dec 2006 11:54:11 +0000 (+0000) Subject: Produce .dat files with bench1. prefix X-Git-Tag: ZEBRA.2.0.8~45 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=b5052763f9975c0446ff13905d4f8b3c5c56f132 Produce .dat files with bench1. prefix --- diff --git a/isamb/bench1.plt b/isamb/bench1.plt index a6c3f35..2886f58 100644 --- a/isamb/bench1.plt +++ b/isamb/bench1.plt @@ -2,7 +2,7 @@ set terminal postscript eps set output "bench1.eps" set xlabel "R" set ylabel "time" -plot "1000x1000.dat" title "isam 1000" with linespoints, \ - "100x10000.dat" title "isam 100" with linespoints, \ - "10x100000.dat" title "isam 10" with linespoints, \ - "1x1000000.dat" title "isam 1" with linespoints +plot "bench1.1000.dat" title "isam 1000" with linespoints, \ + "bench1.100.dat" title "isam 100" with linespoints, \ + "bench1.10.dat" title "isam 10" with linespoints, \ + "bench1.1.dat" title "isam 1" with linespoints diff --git a/isamb/bench1.sh b/isamb/bench1.sh index 1a91cd3..441cc27 100755 --- a/isamb/bench1.sh +++ b/isamb/bench1.sh @@ -1,13 +1,17 @@ #!/bin/sh -# $Id: bench1.sh,v 1.1 2006-12-09 08:03:57 adam Exp $ +# $Id: bench1.sh,v 1.2 2006-12-10 11:54:11 adam Exp $ # Test for variations of number of trees.. Total number of entries is # Constant 1 mio CMD="./benchisamb -r 50" -$CMD -i 1000 -n 1000 >1000x1000.dat +$CMD -i 1000 -n 1000 >bench1.1000.dat +ls -l *.mf sleep 2 -$CMD -i 100 -n 10000 >100x10000.dat +$CMD -i 100 -n 10000 >bench1.100.dat +ls -l *.mf sleep 2 -$CMD -i 10 -n 100000 >10x100000.dat +$CMD -i 10 -n 100000 >bench1.10.dat +ls -l *.mf sleep 2 -$CMD -i 1 -n 1000000 >1x1000000.dat +$CMD -i 1 -n 1000000 >bench1.1.dat +ls -l *.mf