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

Adjust efcs walltime and eupd thread value on Orion #2

Merged
merged 1 commit into from
Nov 17, 2020
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
8 changes: 6 additions & 2 deletions parm/config/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ elif [ $step = "eupd" ]; then
export wtime_eupd="00:30:00"
if [ $CASE = "C768" ]; then
export npe_eupd=480
export nth_eupd=40
export nth_eupd=6
if [[ "$machine" = "WCOSS_DELL_P3" ]]; then
export nth_eupd=7
fi
Expand Down Expand Up @@ -355,7 +355,11 @@ elif [ $step = "esfc" ]; then

elif [ $step = "efcs" ]; then

export wtime_efcs="00:40:00"
if [ $CASE = "C768" ]; then
export wtime_efcs="01:00:00"
else
export wtime_efcs="00:40:00"
fi
export npe_efcs=$(echo "$layout_x * $layout_y * 6" | bc)
export nth_efcs=${nth_fv3:-2}
export npe_node_efcs=$(echo "$npe_node_max / $nth_efcs" | bc)
Expand Down