diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-11 08:06:27 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-11 08:06:27 +0100 |
commit | ff144b225073331776d83e3cf9ddc658efd4d3d4 (patch) | |
tree | db64d383d0f366b63c9004146014ca2da9201bc5 /SpMV/run-fgbs24a.sh | |
parent | ba723e79d5c426fb4bc899b869bc0b497e72a152 (diff) |
SpMV: Include alloc/load/free overhead
Diffstat (limited to 'SpMV/run-fgbs24a.sh')
-rwxr-xr-x | SpMV/run-fgbs24a.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/SpMV/run-fgbs24a.sh b/SpMV/run-fgbs24a.sh index ded0618..42c2c35 100755 --- a/SpMV/run-fgbs24a.sh +++ b/SpMV/run-fgbs24a.sh @@ -4,6 +4,8 @@ set -e mkdir -p $(hostname) +ts=$(date +%Y%m%d) + ( echo "prim-benchmarks SpMV (dfatool fgbs24a edition)" @@ -14,7 +16,7 @@ cd data/generate ./replicate ../bcsstk30.mtx 64 ../bcsstk30.mtx.64.mtx cd ../.. -for nr_dpus in 2543 2304 2048; do +for nr_dpus in 2304 2048 2543; do for nr_tasklets in 16; do echo if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets}; then @@ -26,6 +28,6 @@ for nr_dpus in 2543 2304 2048; do done done echo "Completed at $(date)" -) | tee "$(hostname)/fgbs24a.txt" +) | tee "$(hostname)/${ts}-fgbs24a.txt" rm -f data/bcsstk30.mtx.64.mtx |