From 842023384d485cb590ed8a0d4d04aae4d32b0eca Mon Sep 17 00:00:00 2001 From: Laurent MAZET Date: Thu, 23 Oct 2025 12:21:34 +0200 Subject: [PATCH] change number of measures (10k -> 20k) --- test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 6317d27..ee36afd 100755 --- a/test.sh +++ b/test.sh @@ -1,6 +1,7 @@ #!/bin/sh nbcpu=$(grep -c processor /proc/cpuinfo) +nbtests=20000 run() { dcore=$1 @@ -14,7 +15,7 @@ run() { date | tee $name.log ./getinfo.sh | tee -a $name.log echo "CPU load: $load% ($lcpu/$nbcpu)" | tee -a $name.log - { ./$exe -d 1 -k $dcore -n 10000 -s -o $name.dat | tee -a $name.log; \ + { ./$exe -d 1 -k $dcore -n $nbtests -s -o $name.dat | tee -a $name.log; \ kill -2 $(ps -e | awk '/[l]oad/ || /[s]leep/ { print $1 }') 2>/dev/null; } & ./load -r -1 -n $lcpu >/dev/null echo "Cleaning..." -- 2.30.2