diff options
Diffstat (limited to 'UNI')
-rwxr-xr-x | UNI/baselines/cpu/run.sh | 5 | ||||
-rwxr-xr-x | UNI/run-paper-weak.sh | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/UNI/baselines/cpu/run.sh b/UNI/baselines/cpu/run.sh index 37a6a9c..0f376df 100755 --- a/UNI/baselines/cpu/run.sh +++ b/UNI/baselines/cpu/run.sh @@ -12,9 +12,12 @@ echo "prim-benchmarks UNI CPU (dfatool edition)" echo "Started at $(date)" 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 - for dt in int8_t int16_t int32_t int64_t float double; 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 fi diff --git a/UNI/run-paper-weak.sh b/UNI/run-paper-weak.sh index e9b5e04..5e83c5e 100755 --- a/UNI/run-paper-weak.sh +++ b/UNI/run-paper-weak.sh @@ -12,7 +12,8 @@ echo "prim-benchmarks UNI weak (dfatool edition)" echo "Started at $(date)" echo "Revision $(git describe --always)" -for nr_dpus in 1 4 16 64; do +# 256 and 512 are not part of upstream config space +for nr_dpus in 512 256 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 |