From e4ca4127918d3617751f718a1fa792b89ca523df Mon Sep 17 00:00:00 2001 From: "Paul E. McKenney" Date: Sat, 13 Jun 2009 17:02:36 -0400 Subject: [PATCH] Fix affinity in test script You need to change the script!!! See patch below. All prior results with more than 32 CPUs are bogus because the -a arguments confined the threads to only 32 CPUs (the even-numbered ones from zero to 62). Allow 64 CPUs. Really needs to do the calculation based on the stride and the number of CPUs, but a quick hack for now. Signed-off-by: Paul E. McKenney --- runall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runall.sh b/runall.sh index 147b5a7..5a1096a 100755 --- 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 -- 2.34.1