-
Notifications
You must be signed in to change notification settings - Fork 168
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
Missing mpmd.out
for NOAA AWS CSP
#2003
Changes from all commits
0ff0d9f
a7bdd40
ff8305c
ce1e044
2933975
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,9 +135,16 @@ for (( nset=1 ; nset <= downset ; nset++ )); do | |
fi | ||
err_chk | ||
|
||
# We are in a loop over downset, save output from mpmd into nset specific output | ||
cat mpmd.out # so we capture output into the main logfile | ||
mv mpmd.out "mpmd_${nset}.out" | ||
# We are in a loop over downset, save output from mpmd into nset | ||
# specific output; this if-block is necessary for the NOAA CSP AWS | ||
# platform; AWS uses `mpiexec` (PBS) as it's parallel executable | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WCOSS2 also uses PBS and is handled in the |
||
# launcher rather than `srun` which can use the `MPMD` style; PBS | ||
# can also handle similar situations but the implementation is more | ||
# complicated to implement and this check is sufficient for now. | ||
if [[ -f "mpmd.out" ]]; then | ||
cat mpmd.out # so we capture output into the main logfile | ||
mv mpmd.out "mpmd_${nset}.out" | ||
fi | ||
|
||
# Concatenate grib files from each processor into a single one | ||
# and clean-up as you go | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these the right options for
mpiexec.hydra
? They appear to be slurm optionsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rajdpanda Can you please address @aerorahul's questions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's correct! they are options for srun but not for mpiexec.hydra. Forgot to mention this to Henry. It can be taken out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rajdpanda So, the only change required is to
ush/fv3gfs_downstream_nems.sh
?