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

optimize wave post and EE2 #143

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
054f8c5
updates for boundary points by hour parallelization
JessicaMeixner-NOAA Sep 2, 2020
ab3e0b1
Merge branch 'feature/gfsv16b-wave' of github.com:JessicaMeixner-NOAA…
JessicaMeixner-NOAA Sep 2, 2020
806a578
add extra script for by hour points for waves
JessicaMeixner-NOAA Sep 2, 2020
2568852
updates to split boundary points plus saving config file updates
JessicaMeixner-NOAA Sep 3, 2020
c1d5c45
fix from Bhavani for having first wave grib file be set
JessicaMeixner-NOAA Sep 4, 2020
6b38e64
worked on wcoss
JessicaMeixner-NOAA Sep 8, 2020
4c7ccd4
updates for by hour post
JessicaMeixner-NOAA Sep 15, 2020
d4ebc2e
updates for optimizing point jobs
JessicaMeixner-NOAA Sep 21, 2020
abe24e2
Merge remote-tracking branch 'EMC/feature/gfsv16b' into feature/gfsv1…
JessicaMeixner-NOAA Sep 25, 2020
d86cfee
Merge remote-tracking branch 'EMC/feature/gfsv16b' into feature/gfsv1…
JessicaMeixner-NOAA Sep 28, 2020
2eab17c
cleaning up the rearranged scripts
JessicaMeixner-NOAA Sep 29, 2020
ad5dcff
updates for EE2 from waves
JessicaMeixner-NOAA Oct 2, 2020
56193a6
last of EE2 changes
JessicaMeixner-NOAA Oct 2, 2020
2b2635d
update resources and trigger from 192->180
JessicaMeixner-NOAA Oct 2, 2020
d51a260
bug fix in exgfs_wave_post_pnt.sh
JessicaMeixner-NOAA Oct 2, 2020
cb7b27c
fix resource time estimates
JessicaMeixner-NOAA Oct 2, 2020
2e6ba32
Merge remote-tracking branch 'EMC/feature/gfsv16b' into feature/gfsv1…
JessicaMeixner-NOAA Oct 2, 2020
a4d0e4d
reverting changes to configs that were not intented to be committed
JessicaMeixner-NOAA Oct 2, 2020
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: 4 additions & 4 deletions parm/config/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@ elif [ $step = "wavepostsbs" ]; then

elif [ $step = "wavepostbndpnt" ]; then

export wtime_wavepostbndpnt="03:00:00"
export npe_wavepostbndpnt=56
export wtime_wavepostbndpnt="01:00:00"
export npe_wavepostbndpnt=280
export nth_wavepostbndpnt=1
export npe_node_wavepostbndpnt=$(echo "$npe_node_max / $nth_wavepostbndpnt" | bc)
export NTASKS=${npe_wavepostbndpnt}

elif [ $step = "wavepostpnt" ]; then

export wtime_wavepostpnt="03:00:00"
export npe_wavepostpnt=56
export wtime_wavepostpnt="01:30:00"
export npe_wavepostpnt=280
export nth_wavepostpnt=1
export npe_node_wavepostpnt=$(echo "$npe_node_max / $nth_wavepostpnt" | bc)
export NTASKS=${npe_wavepostpnt}
Expand Down
6 changes: 3 additions & 3 deletions scripts/exgfs_wave_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@
then
set +x
echo ' '
echo '********************************************'
echo '*** POE FAILURE DURING RAW DATA COPYING ***'
echo '********************************************'
echo '********************************************************'
echo '*** FATAL ERROR: POE FAILURE DURING RAW DATA COPYING ***'
echo '********************************************************'
echo ' See Details Below '
echo ' '
[[ "$LOUD" = YES ]] && set -x
Expand Down
Loading