]> mj.ucw.cz Git - libucw.git/blobdiff - debug/sorter/radix-tune-bits.sh
Merge with git+ssh://cvs.ucw.cz/projects/sherlock/GIT/sherlock.git#v3.11
[libucw.git] / debug / sorter / radix-tune-bits.sh
index 65098382f34e742682540810634989ec05e21860..b835a8e71c882d6af602bb97e05611e79a163171 100644 (file)
@@ -23,7 +23,7 @@ log "Decided to benchmark sorting of $SIZE byte data"
 WIDTHS="0 6 7 8 9 10 11 12 13 14"
 
 # Which RadixThresholds we try
-THRS="100 500 1000 2500 5000"
+THRS="2000 4000 10000 20000 50000"
 
 # Which sort-test tests we try
 TESTS="2,5,8,15"
@@ -43,7 +43,7 @@ for W in $WIDTHS ; do
        fi
        for THR in $THRS ; do
                log "Testing with RadixThreshold=$THR"
-               $BUILD/obj/lib/sorter/sort-test -SSorter.RadixThreshold=$THR -s$SIZE -t$TESTS $OPT -v 2>&1 | tee -a tmp/radix-$W
+               $BUILD/obj/lib/sorter/sort-test -SThreads.DefaultStackSize=2M -SSorter.RadixThreshold=$THR -s$SIZE -t$TESTS $OPT -v 2>&1 | tee -a tmp/radix-$W
        done
 done