diff options
Diffstat (limited to 'SCAN-SSA')
-rwxr-xr-x | SCAN-SSA/run-omp.sh | 2 | ||||
-rwxr-xr-x | SCAN-SSA/run.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SCAN-SSA/run-omp.sh b/SCAN-SSA/run-omp.sh index 244ab1e..ccbb1bd 100755 --- a/SCAN-SSA/run-omp.sh +++ b/SCAN-SSA/run-omp.sh @@ -16,7 +16,7 @@ for nr_threads in 1 2 4 6 8 12 16 20 24 32; do for dt in UINT32 UINT64 INT32 INT64 FLOAT DOUBLE; do echo if make -B TYPE=${dt} bin/omp_code; then - OMP_NUM_THREADS=$nr_threads bin/omp_code -w 0 -e 100 -i ${i} || true + OMP_NUM_THREADS=$nr_threads timeout -k 1m 30m bin/omp_code -w 0 -e 100 -i ${i} || true fi done done diff --git a/SCAN-SSA/run.sh b/SCAN-SSA/run.sh index 10dee20..54d5f93 100755 --- a/SCAN-SSA/run.sh +++ b/SCAN-SSA/run.sh @@ -19,7 +19,7 @@ for nr_dpus in 1 2 4 8 16 32 64 128 256 512; do echo if make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 TYPE=${dt} UNROLL=1 \ || make -B NR_DPUS=${nr_dpus} NR_TASKLETS=${nr_tasklets} BL=10 TYPE=${dt} UNROLL=0; then - bin/host_code -w 0 -e 100 -i ${i} || true + timeout -k 1m 30m bin/host_code -w 0 -e 100 -i ${i} || true fi done done |