Skip to content

Commit

Permalink
run ATM forecast only on Google
Browse files Browse the repository at this point in the history
  • Loading branch information
weihuang-jedi committed Aug 13, 2024
1 parent c978717 commit 764163d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parm/config/gfs/config.base
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export NUM_SND_COLLECTIVES=${NUM_SND_COLLECTIVES:-9}

# The tracker, genesis, and METplus jobs are not supported on AWS yet
# TODO: we should place these in workflow/hosts/awspw.yaml as part of AWS setup, not for general.
if [[ "${machine}" == "AWSPW" ]]; then
if [[ "${machine}" == "AWSPW" || "${machine}" == "AZUREPW" || "${machine}" == "GOOGLEPW" ]]; then
export DO_TRACKER="NO"
export DO_GENESIS="NO"
export DO_METP="NO"
Expand Down
3 changes: 2 additions & 1 deletion workflow/rocoto/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def __init__(self, app_config: AppConfig, run: str) -> None:
# Save dict_configs and base in the internal state (never know where it may be needed)
self._base = self._configs['base']

self.HOMEgfs = self._base['HOMEgfs']
#self.HOMEgfs = self._base['HOMEgfs']
self.HOMEgfs = '/contrib/Wei.Huang/src/global-workflow-cloud'
self.rotdir = self._base['ROTDIR']
self.pslot = self._base['PSLOT']
if self.run == "enkfgfs":
Expand Down

0 comments on commit 764163d

Please sign in to comment.