forked from NOAA-GSL/UPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependencies and wall time for graphics jobs (NOAA-EMC#465)
- Loading branch information
1 parent
b4571ac
commit 26d9b44
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2805,7 +2805,7 @@ MODULES_RUN_TASK_FP script. | |
&RSRV_GRAPHICS; | ||
&WALL_LIMIT_GRAPHICS; | ||
|
||
<walltime>{{ wtime_run_fcst }}</walltime> | ||
<walltime>{{ wtime_run_fcst_long }}</walltime> | ||
<nodes>{{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }}</nodes> | ||
<jobname><cyclestr>&TAG;_python{{ uscore_ensmem_name }}_@H_#tilelabel#</cyclestr></jobname> | ||
<join><cyclestr>&LOGDIR;/python{{ uscore_ensmem_name }}_#tilelabel#.log</cyclestr></join> | ||
|
@@ -2822,7 +2822,10 @@ MODULES_RUN_TASK_FP script. | |
<envar><name>ENSCTRL_COMOUT_BASEDIR</name><value>&ENSCTRL_COMOUT_BASEDIR;</value></envar> | ||
|
||
<dependency> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000"/> | ||
<or> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000"/> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000_long"/> | ||
</or> | ||
</dependency> | ||
</task> | ||
</metatask> | ||
|
@@ -2835,7 +2838,7 @@ MODULES_RUN_TASK_FP script. | |
&RSRV_GRAPHICS; | ||
&WALL_LIMIT_GRAPHICS; | ||
|
||
<walltime>{{ wtime_run_fcst }}</walltime> | ||
<walltime>{{ wtime_run_fcst_long }}</walltime> | ||
<nodes>{{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }}</nodes> | ||
<jobname><cyclestr>&TAG;_python{{ uscore_ensmem_name }}_@H_skewts</cyclestr></jobname> | ||
<join><cyclestr>&LOGDIR;/python_skewts{{ uscore_ensmem_name }}[email protected]</cyclestr></join> | ||
|
@@ -2850,7 +2853,10 @@ MODULES_RUN_TASK_FP script. | |
<envar><name>ENSCTRL_COMOUT_BASEDIR</name><value>&ENSCTRL_COMOUT_BASEDIR;</value></envar> | ||
|
||
<dependency> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000"/> | ||
<or> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000"/> | ||
<taskdep task="&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f000_long"/> | ||
</or> | ||
</dependency> | ||
</task> | ||
|
||
|