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

Limit number of CPU for post #1061

Merged
Merged
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
4 changes: 4 additions & 0 deletions parm/config/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,11 @@ elif [ ${step} = "post" ]; then

export wtime_post="02:00:00"
export wtime_post_gfs="06:00:00"
res=$(echo ${CASE} | cut -c2-)
export npe_post=112
if (( npe_post > res )); then
export npe_post=${res}
fi
export nth_post=1
export npe_node_post=12
export npe_node_dwn=${npe_node_max}
Expand Down