Skip to content

Commit

Permalink
Update archive job memory request value for R&Ds (#1183)
Browse files Browse the repository at this point in the history
- Revert memory request back to 2048M on R&Ds.
- Keep 50GB setting for WCOSS2.

Refs #1144
  • Loading branch information
KateFriedman-NOAA authored Dec 15, 2022
1 parent a18efae commit 98545da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion parm/config/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,10 @@ elif [[ ${step} = "arch" || ${step} = "earc" || ${step} = "getic" ]]; then
eval "export npe_${step}=1"
eval "export npe_node_${step}=1"
eval "export nth_${step}=1"
eval "export memory_${step}=50GB"
eval "export memory_${step}=2048M"
if [[ "${machine}" = "WCOSS2" ]]; then
eval "export memory_${step}=50GB"
fi

elif [ ${step} = "coupled_ic" ]; then

Expand Down

0 comments on commit 98545da

Please sign in to comment.