From 62944fbc00869dd84b03630ad65bf993a7524752 Mon Sep 17 00:00:00 2001 From: Walter Kolczynski - NOAA Date: Sat, 14 Jan 2023 19:32:29 -0500 Subject: [PATCH] Increase wallclock for diag jobs (#1216) Diag jobs were failing due to insufficient wall clock, so the wall clock is increased until a more complete review of the resources can be completed. Refs #1215 --- parm/config/config.resources | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parm/config/config.resources b/parm/config/config.resources index cbd45561aa..6e5c956db8 100755 --- a/parm/config/config.resources +++ b/parm/config/config.resources @@ -343,7 +343,7 @@ elif [ ${step} = "analcalc" ]; then elif [ ${step} = "analdiag" ]; then - export wtime_analdiag="00:10:00" + export wtime_analdiag="00:15:00" export npe_analdiag=96 # Should be at least twice npe_ediag export nth_analdiag=1 export npe_node_analdiag=$(echo "${npe_node_max} / ${nth_analdiag}" | bc) @@ -673,7 +673,7 @@ elif [[ ${step} = "eobs" || ${step} = "eomg" ]]; then elif [ ${step} = "ediag" ]; then - export wtime_ediag="00:06:00" + export wtime_ediag="00:15:00" export npe_ediag=48 export nth_ediag=1 export npe_node_ediag=$(echo "${npe_node_max} / ${nth_ediag}" | bc)