Skip to content

Commit

Permalink
Merge pull request #148 from NOAA-EMC/feature/gfsv16b_updates
Browse files Browse the repository at this point in the history
Updates to optimize wave post jobs
  • Loading branch information
KateFriedman-NOAA authored Oct 5, 2020
2 parents 451669a + cd86b0e commit 6197bc6
Show file tree
Hide file tree
Showing 21 changed files with 841 additions and 554 deletions.
2 changes: 1 addition & 1 deletion jobs/rocoto/waveinit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "=============== START TO RUN WAVE INIT ==============="
# Execute the JJOB
$HOMEgfs/jobs/JGLOBAL_WAVE_INIT
status=$?
exit $status
[[ $status -ne 0 ]] && exit $status

###############################################################
# Force Exit out cleanly
Expand Down
2 changes: 1 addition & 1 deletion jobs/rocoto/wavepostbndpnt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "=============== START TO RUN WAVE_POST_BNDPNT ==============="
# Execute the JJOB
$HOMEgfs/jobs/JGLOBAL_WAVE_POST_BNDPNT
status=$?
exit $status
[[ $status -ne 0 ]] && exit $status

###############################################################
# Force Exit out cleanly
Expand Down
2 changes: 1 addition & 1 deletion jobs/rocoto/wavepostpnt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "=============== START TO RUN WAVE_POST_PNT ==============="
# Execute the JJOB
$HOMEgfs/jobs/JGLOBAL_WAVE_POST_PNT
status=$?
exit $status
[[ $status -ne 0 ]] && exit $status

###############################################################
# Force Exit out cleanly
Expand Down
2 changes: 1 addition & 1 deletion jobs/rocoto/wavepostsbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "=============== START TO RUN WAVE POST_SBS ==============="
# Execute the JJOB
$HOMEgfs/jobs/JGLOBAL_WAVE_POST_SBS
status=$?
exit $status
[[ $status -ne 0 ]] && exit $status

###############################################################
# Force Exit out cleanly
Expand Down
2 changes: 1 addition & 1 deletion jobs/rocoto/waveprep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "=============== START TO RUN WAVE PREP ==============="
# Execute the JJOB
$HOMEgfs/jobs/JGLOBAL_WAVE_PREP
status=$?
exit $status
[[ $status -ne 0 ]] && exit $status

###############################################################
# Force Exit out cleanly
Expand Down
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

0 comments on commit 6197bc6

Please sign in to comment.