Skip to content

Commit

Permalink
Passing fundamental tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
christinaholtNOAA committed Feb 28, 2025
1 parent 3541df0 commit 926c426
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion parm/wflow/plot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ metatask_plot_allvars:
nprocs: '{{ task_plot_allvars.execution.batchargs.nodes * task_plot_allvars.execution.batchargs.tasks_per_node }}'
fhr: '#fhr#'
native: '{{ platform.SCHED_NATIVE_CMD }}'
cores: !int '{{ task_plot_allvars.execution.batchargs.cores }}'
nodes: '{{ task_plot_allvars.execution.batchargs.nodes }}:ppn={{ task_plot_allvars.execution.batchargs.tasks_per_node }}'
exclusive: '{{ task_plot_allvars.execution.batchargs.exclusive }}'
partition: '{{ "&PARTITION_DEFAULT;" if platform.get("PARTITION_DEFAULT") }}'
Expand Down
1 change: 0 additions & 1 deletion ush/machine/wcoss2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ rocoto:
native:
metatask_run_ensemble:
task_run_fcst_mem#mem#:
cores:
native: '{{ platform.SCHED_NATIVE_CMD }}'
nodes: '{{ nnodes }}:ppn={{ ppn }}:tpp={{ task_run_fcst.fv3.execution.threads // 1 }}'
nodesize: '{{ platform.NCORES_PER_NODE }}'
Expand Down
4 changes: 2 additions & 2 deletions ush/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,12 +681,12 @@ def _remove_tag(tasks, tag):
obs_basedirs_orig = list(obs_basedirs_dict.values())
obs_basedirs_uniq = list(set(obs_basedirs_orig))
if len(obs_basedirs_orig) != len(obs_basedirs_uniq):
obs_locations = [f"{v} = {p}" for v, p in obs_basedirs_dict.items()]
obs_locations = "\n".join([f"{v} = {p}" for v, p in obs_basedirs_dict.items()])
msg = dedent(
f"""
The base directories for the obs files must be distinct, but at least two
are identical:
{"\n".join(obs_locations)}
{obs_locations}
Modify these in the SRW App's user configuration file to make them distinct
and rerun.
Expand Down

0 comments on commit 926c426

Please sign in to comment.