diff options
author | Birte Friesel <dfriesel@uos.de> | 2023-07-26 17:55:54 +0200 |
---|---|---|
committer | Birte Friesel <dfriesel@uos.de> | 2023-07-26 17:55:54 +0200 |
commit | c4dae8a92fc6c9bfa48c5d5085a0dcc96fe9e645 (patch) | |
tree | 315f59f61a8e06ea4931f677141acb1435529aca /UNI | |
parent | 16c8347eac0e9650570aadf958c8a04a594a9c35 (diff) |
update config space
Diffstat (limited to 'UNI')
-rwxr-xr-x | UNI/baselines/cpu/run.sh | 8 | ||||
-rwxr-xr-x | UNI/run-paper-strong-full.sh | 4 | ||||
-rwxr-xr-x | UNI/run-paper-strong-rank.sh | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/UNI/baselines/cpu/run.sh b/UNI/baselines/cpu/run.sh index 0f376df..8bfa629 100755 --- a/UNI/baselines/cpu/run.sh +++ b/UNI/baselines/cpu/run.sh @@ -15,11 +15,15 @@ echo "Revision $(git describe --always)" # default: int64_t; -t 4 -i 1258291200 for nr_threads in 88 64 44 1 2 4 6 8 12 16 20 24 32; do - for i in 19660800 1258291200 629145600 314572800 157286400 78643200 39321600; do + # 1258291200 : default + # 251658240 : strong-full + # 3932160 : strong-rank + for i in 1258291200 251658240 3932160; do #for dt in int8_t int16_t int32_t int64_t float double; do for dt in int64_t; do if make -B TYPE=${dt}; then - timeout --foreground -k 1m 60m ./uni -i ${i} -w 0 -e 100 -t ${nr_threads} || true + timeout --foreground -k 1m 60m ./uni -i ${i} -w 0 -e 50 -t ${nr_threads} || true + sleep 10 fi done done diff --git a/UNI/run-paper-strong-full.sh b/UNI/run-paper-strong-full.sh index a9f3597..ff67e39 100755 --- a/UNI/run-paper-strong-full.sh +++ b/UNI/run-paper-strong-full.sh @@ -14,8 +14,8 @@ echo "prim-benchmarks UNI strong-full (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -# 2544 is not part of upstream -for nr_dpus in 2544 256 512 1024 2048; do +# >2048 is not part of 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} BL=10; then diff --git a/UNI/run-paper-strong-rank.sh b/UNI/run-paper-strong-rank.sh index 6cffd65..7ddb868 100755 --- a/UNI/run-paper-strong-rank.sh +++ b/UNI/run-paper-strong-rank.sh @@ -14,8 +14,8 @@ echo "prim-benchmarks UNI strong-rank (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -# 256 and 512 are not part of upstream config space -for nr_dpus in 512 256 1 4 16 64; do +# >64 are not part of upstream config space +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} BL=10; then |