X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=debug%2Fsorter%2Fradix-tune-thresh.sh;h=71d929b3e316b841ec02d294f500295b3d301d43;hb=d5fdccbecd2acde9a6e067b54fcd69b02f31a820;hp=1c75ed586e54f3a7f1ec581baa2842b349262c8e;hpb=d6097caa134867e0e95a1ed9770ef3788b3c61fa;p=libucw.git diff --git a/debug/sorter/radix-tune-thresh.sh b/debug/sorter/radix-tune-thresh.sh index 1c75ed58..71d929b3 100644 --- a/debug/sorter/radix-tune-thresh.sh +++ b/debug/sorter/radix-tune-thresh.sh @@ -7,7 +7,7 @@ UCW_PROGNAME="$0" # Path to Sherlock build directory [ -n "$BUILD" ] || BUILD=.. -[ -f "$BUILD/lib/sorter/sorter.h" ] || die "BUILD does not point to Sherlock build directory" +[ -f "$BUILD/ucw/sorter/sorter.h" ] || die "BUILD does not point to Sherlock build directory" # Find out sort buffer size parse-config 'Sorter{##SortBuffer}' @@ -43,7 +43,7 @@ while [ $SIZE -gt 262144 ] ; do echo $SIZE >>tmp/radix-sizes for T in $THRS ; do log "Trying size $SIZE with threshold $T" - $BUILD/obj/lib/sorter/sort-test -SSorter.RadixThreshold=$T -s$SIZE -t$TEST -v 2>&1 | tee -a tmp/radix-$T + $BUILD/obj/ucw/sorter/sort-test -SSorter.RadixThreshold=$T -s$SIZE -t$TEST -v 2>&1 | tee -a tmp/radix-$T done SIZE=$(($SIZE/2)) done