From 75c4b98be0aff0ca57e68bf7806559a2f2d4152c Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 9 Jun 2022 08:56:47 +0200 Subject: [PATCH] improved name of job - also joined job outputs for easier reading --- .ipr/launch-perf-jobs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ipr/launch-perf-jobs.sh b/.ipr/launch-perf-jobs.sh index 43ce50a..81aadb7 100755 --- a/.ipr/launch-perf-jobs.sh +++ b/.ipr/launch-perf-jobs.sh @@ -209,7 +209,8 @@ function launch_job_for_host_group() qsub_command="${qsub_command} -cwd" qsub_command="${qsub_command} -m ae" qsub_command="${qsub_command} -l mem_available=${ram_per_core}" - qsub_command="${qsub_command} -N ${benchmark_test}_${host_group_id}" + qsub_command="${qsub_command} -j y" # medge stderr file into stdout file for easier reading of history of events + qsub_command="${qsub_command} -N hibench_${host_group_id}_${compiler_id}_${hibridon_version}" qsub_command="${qsub_command} ${command}" # qsub -pe smp "$num_cores" -l "hostname=${hosts}" echo "qsub_command = $qsub_command"