Mercurial > hg > Papers > 2010 > kent-master
view quicksort_for_ppc/benchmark.sh @ 8:4b2af58b0302 probation_version
the version for probation.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 16 Feb 2010 14:04:40 +0900 |
parents | aa09c34b90d3 |
children |
line wrap: on
line source
#!/usr/bin/env zsh time=/usr/bin/time QS=./quicksort_c size=10000000 seed=123456789 num=10 max=0 min=99999 count=0 amount=0 echo "size of array = $size" while [[ $count -lt $num ]]; do usertime=$( $time -p $QS -n $size -s $seed 2>&1 >& - |grep '^user'|tr -s " "|cut -f2 -d" ") #usertime=$(printf "%d" $usertime) echo $usertime amount=$(($usertime+$amount)) if [[ $usertime -lt $min ]]; then min=$usertime fi if [[ $usertime -gt $max ]]; then max=$usertime fi #seed=$seed[1,-2] seed=$(($seed+10)) count=$(($count+1)) done echo "amount time = $amount" echo "maxtime = $max" echo "mintime = $min" amount=$(($amount - $max - $min)) echo "amount time - mintime - maxtime = $amount" count=$(($count-2)) echo "count = $count" averagetime=$(($amount/($count))) echo "average time = $averagetime"