Fix typo in license file
[urcu.git] / runall.sh
index 6320ad923b75979902ae08ad4af65389f7aac7ff..5a1096a41eab2aa9db78d8e4e09423cb7849ded2 100755 (executable)
--- a/runall.sh
+++ b/runall.sh
@@ -6,7 +6,7 @@
 NUM_CPUS=8
 
 #extra options, e.g. for setting affinity on even CPUs :
-#EXTRA_OPTS=$(for a in $(seq 0 2 63); do echo -n "-a ${a} "; done)
+#EXTRA_OPTS=$(for a in $(seq 0 2 127); do echo -n "-a ${a} "; done)
 
 
 #Vary update fraction
@@ -16,19 +16,19 @@ NUM_CPUS=8
 
 echo Executing update fraction test
 
-NR_READERS=$((${NUM_CPUS} - 1))
-NR_WRITERS=1
 DURATION=10
 WDELAY_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768
-              65536 131072 262144 524288 1048576 2097152"
+              65536 131072 262144 524288 1048576 2097152 4194304 8388608
+              16777216 33554432 67108864 134217728"
+NR_WRITERS=$((${NUM_CPUS} / 2))
 
 rm -f update-fraction.log
 
+NR_READERS=$((${NUM_CPUS} - ${NR_WRITERS}))
 for WDELAY in ${WDELAY_ARRAY}; do
        ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d ${WDELAY} ${EXTRA_OPTS} | tee -a update-fraction.log
 done
 
-
 #Test scalability :
 # x: vary number of readers from 0 to num cpus
 # y: ops/s
@@ -53,11 +53,11 @@ done
 
 echo Executing reader C.S. length test
 
-NR_READERS=8
+NR_READERS=${NUM_CPUS}
 NR_WRITERS=0
 DURATION=10
 #in loops.
-READERCSLEN_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768"
+READERCSLEN_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144 524288 1048576 2097152"
 
 rm -f readercslen.log
 
This page took 0.024727 seconds and 4 git commands to generate.