Skip to content

Commit

Permalink
modified parm/config/gefs/config.resources
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMFernando-NOAA committed Jul 17, 2024
1 parent 5c17345 commit c1e55ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions parm/config/gefs/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,6 @@ case ${step} in
declare -x "npe_node_${step}"="1"
declare -x "nth_${step}"="1"
declare -x "memory_${step}"="4096M"
if [[ "${machine}" == "WCOSS2" ]]; then
declare -x "memory_${step}"="50GB"
fi
;;

*)
Expand Down
8 changes: 4 additions & 4 deletions workflow/rocoto/gefs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,10 @@ def wavepostpnt(self):

def arch(self):
deps = []
dependencies = []
dep_dict = {'type': 'task', 'name': f'stage_ic'}
dependencies.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep_condition='and', dep=deps)
dep_dict = {'type': 'task', 'name': f'wave_post_pnt_mem#member#'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep_condition='or', dep=deps)

resources = self.get_resource('arch')
task_name = f'arch'
task_dict = {'task_name': task_name,
Expand Down

0 comments on commit c1e55ef

Please sign in to comment.