diff options
Diffstat (limited to 'BS/run-paper-weak.sh')
-rwxr-xr-x | BS/run-paper-weak.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BS/run-paper-weak.sh b/BS/run-paper-weak.sh index f845e30..a27c547 100755 --- a/BS/run-paper-weak.sh +++ b/BS/run-paper-weak.sh @@ -15,11 +15,11 @@ echo "prim-benchmarks BS weak (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -# 256 and 512 are not part of upstream -for nr_dpus in 256 512 1 4 16 64; do +for nr_dpus in 1 4 16 64; do for nr_tasklets in 1 2 4 8 16; do echo - if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 verbose=1; then + # original Makefile sets PROBLEM_SIZE=2, for some reason. + if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 verbose=1 PROBLEM_SIZE=2; then i=$(( nr_dpus * 262144 )) timeout --foreground -k 1m 30m bin/bs_host -w 0 -e 100 -i $i || true fi |