diff options
Diffstat (limited to 'BS/run-paper-strong-full.sh')
-rwxr-xr-x | BS/run-paper-strong-full.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/BS/run-paper-strong-full.sh b/BS/run-paper-strong-full.sh index 3617ffe..a5195f9 100755 --- a/BS/run-paper-strong-full.sh +++ b/BS/run-paper-strong-full.sh @@ -8,6 +8,8 @@ set -e # -e: number of timed iterations # -i; ignored, always uses 262144 elements +( + echo "prim-benchmarks BS strong-full (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" @@ -15,8 +17,9 @@ echo "Revision $(git describe --always)" for nr_dpus in 256 512 1024 2048; 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; then + if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 verbose=1; then timeout --foreground -k 1m 30m bin/bs_host -w 0 -e 100 -i 16777216 || true fi done -done | tee log-paper-strong-full.txt +done +) | tee log-paper-strong-full.txt |