diff options
Diffstat (limited to 'SpMV')
-rwxr-xr-x | SpMV/baselines/cpu/run.sh | 1 | ||||
-rwxr-xr-x | SpMV/run-paper-strong-full.sh | 4 | ||||
-rwxr-xr-x | SpMV/run-paper-strong-rank.sh | 4 | ||||
-rwxr-xr-x | SpMV/run-paper-weak.sh | 3 |
4 files changed, 6 insertions, 6 deletions
diff --git a/SpMV/baselines/cpu/run.sh b/SpMV/baselines/cpu/run.sh index a993cc0..aed5f0d 100755 --- a/SpMV/baselines/cpu/run.sh +++ b/SpMV/baselines/cpu/run.sh @@ -20,6 +20,7 @@ make -B for i in $(seq 1 50); do for nr_threads in 88 64 44 1 2 4 6 8 12 16 20 24 32; do OMP_NUM_THREADS=${nr_threads} timeout --foreground -k 1m 30m ./spmv -f ../../data/bcsstk30.mtx -v 0 || true + sleep 10 done done ) | tee "${HOST}-explore.txt" diff --git a/SpMV/run-paper-strong-full.sh b/SpMV/run-paper-strong-full.sh index e4d7260..09b7085 100755 --- a/SpMV/run-paper-strong-full.sh +++ b/SpMV/run-paper-strong-full.sh @@ -12,8 +12,8 @@ cd data/generate ./replicate ../bcsstk30.mtx 64 ../bcsstk30.mtx.64.mtx cd ../.. -# 2544 is not in upstream -for nr_dpus in 2544 256 512 1024 2048; do +# >2048 is not in upstream +for nr_dpus in 2543 2304 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} verbose=1; then diff --git a/SpMV/run-paper-strong-rank.sh b/SpMV/run-paper-strong-rank.sh index e0cd45d..c73a6a0 100755 --- a/SpMV/run-paper-strong-rank.sh +++ b/SpMV/run-paper-strong-rank.sh @@ -8,8 +8,8 @@ echo "prim-benchmarks SpMV strong-rank (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 +# >64 are not part of upstream +for nr_dpus in 128 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} verbose=1; then diff --git a/SpMV/run-paper-weak.sh b/SpMV/run-paper-weak.sh index d2cc0ed..74683cc 100755 --- a/SpMV/run-paper-weak.sh +++ b/SpMV/run-paper-weak.sh @@ -8,8 +8,7 @@ echo "prim-benchmarks SpMV 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 cd data/generate make ./replicate ../bcsstk30.mtx ${nr_dpus} /tmp/bcsstk30.mtx.${nr_dpus}.mtx |