Update makefile64
[urcu.git] / runall.sh
1 #!/bin/sh
2
3 #run all tests
4
5 #set to number of active CPUS
6 NUM_CPUS=8
7
8 #extra options, e.g. for setting affinity on even CPUs :
9 #EXTRA_OPTS=$(for a in $(seq 0 2 127); do echo -n "-a ${a} "; done)
10
11 #ppc64 striding, use with NUM_CPUS=8
12
13 #stride 1
14 #EXTRA_OPTS=$(for a in $(seq 0 2 15); do echo -n "-a ${a} "; done)
15 #stride 2
16 #EXTRA_OPTS=$(for a in $(seq 0 4 31); do echo -n "-a ${a} "; done)
17 #stride 4
18 #EXTRA_OPTS=$(for a in $(seq 0 8 63); do echo -n "-a ${a} "; done)
19 #stride 8
20 #EXTRA_OPTS=$(for a in $(seq 0 16 127); do echo -n "-a ${a} "; done)
21
22 #Vary update fraction
23 #x: vary update fraction from 0 to 0.0001
24 #fix number of readers and reader C.S. length, vary delay between updates
25 #y: ops/s
26
27 rm -f runall.log
28 rm -fr runall.detail.log
29
30
31 echo Executing batch RCU test
32
33 DURATION=10
34 BATCH_ARRAY="1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768"
35 NR_WRITERS=$((${NUM_CPUS} / 2))
36
37 rm -f batch-rcu.log
38
39 NR_READERS=$((${NUM_CPUS} - ${NR_WRITERS}))
40 for BATCH_SIZE in ${BATCH_ARRAY}; do
41 echo "./runtests-batch.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d 0 -b ${BATCH_SIZE} ${EXTRA_OPTS} | tee -a batch-rcu.log" >> runall.log
42 ./runtests-batch.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d 0 -b ${BATCH_SIZE} ${EXTRA_OPTS} | tee -a batch-rcu.log
43 done
44
45 #setting gc each 1024
46 EXTRA_OPTS+="-b 1024"
47
48 echo Executing update fraction test
49
50 DURATION=10
51 WDELAY_ARRAY="0 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768
52 65536 131072 262144 524288 1048576 2097152 4194304 8388608
53 16777216 33554432 67108864 134217728"
54 NR_WRITERS=$((${NUM_CPUS} / 2))
55
56 rm -f update-fraction.log
57
58 NR_READERS=$((${NUM_CPUS} - ${NR_WRITERS}))
59 for WDELAY in ${WDELAY_ARRAY}; do
60 echo "./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d ${WDELAY} ${EXTRA_OPTS} | tee -a update-fraction.log" >> runall.log
61 ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} -d ${WDELAY} ${EXTRA_OPTS} | tee -a update-fraction.log
62 done
63
64 #Test scalability :
65 # x: vary number of readers from 0 to num cpus
66 # y: ops/s
67 # 0 writer.
68
69 echo Executing scalability test
70
71 NR_WRITERS=0
72 DURATION=10
73
74 rm -f scalability.log
75
76 for NR_READERS in $(seq 1 ${NUM_CPUS}); do
77 echo "./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} ${EXTRA_OPTS}| tee -a scalability.log" >> runall.log
78 ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} ${EXTRA_OPTS}| tee -a scalability.log
79 done
80
81
82 # x: Vary reader C.S. length from 0 to 100 us
83 # y: ops/s
84 # 8 readers
85 # 0 writers
86
87 echo Executing reader C.S. length test
88
89 NR_READERS=${NUM_CPUS}
90 NR_WRITERS=0
91 DURATION=10
92 #in loops.
93 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"
94
95 rm -f readercslen.log
96
97 for READERCSLEN in ${READERCSLEN_ARRAY}; do
98 echo "./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} ${EXTRA_OPTS} -c ${READERCSLEN} | tee -a readercslen.log" >> runall.log
99 ./runtests.sh ${NR_READERS} ${NR_WRITERS} ${DURATION} ${EXTRA_OPTS} -c ${READERCSLEN} | tee -a readercslen.log
100 done
This page took 0.030514 seconds and 4 git commands to generate.