From 25e2cc4596213b39d2a3dc3ee8afda4a86e10d38 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Tue, 25 Aug 2020 18:12:04 +0000 Subject: [PATCH 1/2] Fix wavepostbndpnt dependency and increase wavepostbntpnt and wavepostpnt walltimes --- parm/config/config.resources | 4 ++-- ush/rocoto/setup_workflow.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parm/config/config.resources b/parm/config/config.resources index db6291618a..4c4ef8075c 100755 --- a/parm/config/config.resources +++ b/parm/config/config.resources @@ -67,7 +67,7 @@ elif [ $step = "wavepostsbs" ]; then elif [ $step = "wavepostbndpnt" ]; then - export wtime_wavepostbndpnt="00:30:00" + export wtime_wavepostbndpnt="01:00:00" export npe_wavepostbndpnt=280 export nth_wavepostbndpnt=1 export npe_node_wavepostbndpnt=$(echo "$npe_node_max / $nth_wavepostbndpnt" | bc) @@ -75,7 +75,7 @@ elif [ $step = "wavepostbndpnt" ]; then elif [ $step = "wavepostpnt" ]; then - export wtime_wavepostpnt="00:30:00" + export wtime_wavepostpnt="01:00:00" export npe_wavepostpnt=280 export nth_wavepostpnt=1 export npe_node_wavepostpnt=$(echo "$npe_node_max / $nth_wavepostpnt" | bc) diff --git a/ush/rocoto/setup_workflow.py b/ush/rocoto/setup_workflow.py index 93c2ee9093..f5f96e34bd 100755 --- a/ush/rocoto/setup_workflow.py +++ b/ush/rocoto/setup_workflow.py @@ -574,7 +574,7 @@ def get_gdasgfs_tasks(dict_configs, cdump='gdas'): # wavepostbndpnt if do_wave in ['Y', 'YES'] and cdump in ['gfs']: deps = [] - data = '&ROTDIR;/%s.@Y@m@d/@H/wave/rundata/%swave.out_pnt.points.@Y@m@d.@H0000' % (cdump,cdump) + data = '&ROTDIR;/%s.@Y@m@d/@H/atmos/%s.t@Hz.logf192.txt' % (cdump, cdump) dep_dict = {'type': 'data', 'data': data} deps.append(rocoto.add_dependency(dep_dict)) dependencies = rocoto.create_dependency(dep=deps) From b74b21e71edbb62207ccfcafe4c6ed5b6d301cfe Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Tue, 25 Aug 2020 18:14:15 +0000 Subject: [PATCH 2/2] Remove extra space from line --- ush/rocoto/setup_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ush/rocoto/setup_workflow.py b/ush/rocoto/setup_workflow.py index f5f96e34bd..35ad0d3d19 100755 --- a/ush/rocoto/setup_workflow.py +++ b/ush/rocoto/setup_workflow.py @@ -574,7 +574,7 @@ def get_gdasgfs_tasks(dict_configs, cdump='gdas'): # wavepostbndpnt if do_wave in ['Y', 'YES'] and cdump in ['gfs']: deps = [] - data = '&ROTDIR;/%s.@Y@m@d/@H/atmos/%s.t@Hz.logf192.txt' % (cdump, cdump) + data = '&ROTDIR;/%s.@Y@m@d/@H/atmos/%s.t@Hz.logf192.txt' % (cdump,cdump) dep_dict = {'type': 'data', 'data': data} deps.append(rocoto.add_dependency(dep_dict)) dependencies = rocoto.create_dependency(dep=deps)