Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow different threading for gdasfcst and gfsfcst #611

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions parm/config/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ elif [ $step = "fcst" ]; then
export layout_y=$layout_y_gfs
export WRITE_GROUP=$WRITE_GROUP_GFS
export WRTTASK_PER_GROUP=$WRTTASK_PER_GROUP_GFS
export nth_fcst=${nth_fv3_gfs:-2}
else
export nth_fcst=${nth_fv3:-2}
fi

(( ATMPETS = layout_x * layout_y * 6 ))
Expand All @@ -208,8 +211,6 @@ elif [ $step = "fcst" ]; then
export ATMPETS
NTASKS_TOT=$ATMPETS

export nth_fcst=${nth_fv3:-2}

export npe_node_fcst=$(echo "$npe_node_max / $nth_fcst" | bc)
if [[ "$machine" == "WCOSS_C" ]]; then export memory_fcst="1024M"; fi

Expand Down