From 4fb44cd70ff71b61723f610715c89b1e55f288cd Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 22 Sep 2022 12:24:18 +0000 Subject: [PATCH 1/2] move task calculations to compute_petbounds_and_tasks in rt_utils.sh; call it from rt.sh --- tests/rt.sh | 2 ++ tests/rt_utils.sh | 69 +++++++++++++++++++++++++++++++++++++++++++++ tests/run_test.sh | 72 +---------------------------------------------- 3 files changed, 72 insertions(+), 71 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index 82e235dc7e..92f44c9892 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -715,6 +715,8 @@ EOF ( source ${PATHRT}/tests/$TEST_NAME + compute_petbounds_and_tasks + TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 20d4a46a19..c049031af4 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -15,6 +15,75 @@ qsub_id=0 slurm_id=0 bsub_id=0 +function compute_petbounds_and_tasks() { + + # each test MUST define ${COMPONENT}_tasks variable for all components it is using + # and MUST NOT define those that it's not using or set the value to 0. + + # ATM is a special case since it is running on the sum of compute and io tasks. + # CHM component and mediator are running on ATM compute tasks only. + + if [[ $DATM_CDEPS = 'false' ]]; then + if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then + ATM_compute_tasks=$((INPES * JNPES * NTILES)) + fi + if [[ $QUILTING = '.true.' ]]; then + ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) + fi + fi + + local n=0 + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds + + # ATM + ATM_io_tasks=${ATM_io_tasks:-0} + if [[ $((ATM_compute_tasks + ATM_io_tasks)) -gt 0 ]]; then + atm_petlist_bounds="${n} $((n + ATM_compute_tasks + ATM_io_tasks -1))" + n=$((n + ATM_compute_tasks + ATM_io_tasks)) + fi + + # OCN + if [[ ${OCN_tasks:-0} -gt 0 ]]; then + ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" + n=$((n + OCN_tasks)) + fi + + # ICE + if [[ ${ICE_tasks:-0} -gt 0 ]]; then + ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" + n=$((n + ICE_tasks)) + fi + + # WAV + if [[ ${WAV_tasks:-0} -gt 0 ]]; then + wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" + n=$((n + WAV_tasks)) + fi + + # CHM + chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # MED + med_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # AQM + aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + UFS_tasks=${n} + + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + + # TASKS is now set to UFS_TASKS + export TASKS=$UFS_tasks +} + interrupt_job() { set -x if [[ $SCHEDULER = 'pbs' ]]; then diff --git a/tests/run_test.sh b/tests/run_test.sh index 522e1aff34..44b6f66e1d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -32,64 +32,6 @@ remove_fail_test() { fi } -function compute_petbounds() { - - # each test MUST define ${COMPONENT}_tasks variable for all components it is using - # and MUST NOT define those that it's not using or set the value to 0. - - # ATM is a special case since it is running on the sum of compute and io tasks. - # CHM component and mediator are running on ATM compute tasks only. - - local n=0 - unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds - - # ATM - ATM_io_tasks=${ATM_io_tasks:-0} - if [[ $((ATM_compute_tasks + ATM_io_tasks)) -gt 0 ]]; then - atm_petlist_bounds="${n} $((n + ATM_compute_tasks + ATM_io_tasks -1))" - n=$((n + ATM_compute_tasks + ATM_io_tasks)) - fi - - # OCN - if [[ ${OCN_tasks:-0} -gt 0 ]]; then - ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" - n=$((n + OCN_tasks)) - fi - - # ICE - if [[ ${ICE_tasks:-0} -gt 0 ]]; then - ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" - n=$((n + ICE_tasks)) - fi - - # WAV - if [[ ${WAV_tasks:-0} -gt 0 ]]; then - wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" - n=$((n + WAV_tasks)) - fi - - # CHM - chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" - - # MED - med_petlist_bounds="0 $((ATM_compute_tasks - 1))" - - # AQM - aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" - - UFS_tasks=${n} - - echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" - echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" - echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" - echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" - echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" - echo "MED_petlist_bounds: ${med_petlist_bounds:-}" - echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" - echo "UFS_tasks : ${UFS_tasks:-}" - -} - if [[ $# != 5 ]]; then echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_NR COMPILE_NR" exit 1 @@ -174,22 +116,10 @@ fi atparse < ${PATHRT}/parm/${MODEL_CONFIGURE:-model_configure.IN} > model_configure -if [[ $DATM_CDEPS = 'false' ]]; then - if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then - ATM_compute_tasks=$((INPES * JNPES * NTILES)) - fi - if [[ $QUILTING = '.true.' ]]; then - ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) - fi -fi - -compute_petbounds +compute_petbounds_and_tasks atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure -# TASKS is now set to UFS_TASKS -export TASKS=$UFS_tasks - if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02 NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02 From 37d13db104cb8eea7fdc29c3cd833ff923f5ecdc Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Thu, 22 Sep 2022 15:04:19 +0000 Subject: [PATCH 2/2] hera.gnu tests passed --- tests/RegressionTests_hera.gnu.log | 324 ++++++++++++++--------------- 1 file changed, 162 insertions(+), 162 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 76ee98efbd..31faec71e2 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Sep 19 22:32:36 UTC 2022 +Thu Sep 22 13:21:16 UTC 2022 Start Regression test -Compile 001 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 301 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 377 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 304 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 141 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 300 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 381 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 302 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 301 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -62,14 +62,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 804.871699 - 0: The maximum resident set size (KB) = 475232 + 0: The total amount of wall time = 806.630499 + 0: The maximum resident set size (KB) = 475260 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_restart +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -108,14 +108,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.041931 - 0: The maximum resident set size (KB) = 184132 + 0: The total amount of wall time = 412.272960 + 0: The maximum resident set size (KB) = 182348 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,14 +154,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 674.721311 -0: The maximum resident set size (KB) = 701616 +0: The total amount of wall time = 671.164032 +0: The maximum resident set size (KB) = 703432 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -172,14 +172,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 643.389063 - 0: The maximum resident set size (KB) = 480308 + 0: The total amount of wall time = 638.626718 + 0: The maximum resident set size (KB) = 481596 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_ras Checking test 005 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -190,14 +190,14 @@ Checking test 005 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 837.660300 - 0: The maximum resident set size (KB) = 486544 + 0: The total amount of wall time = 827.404501 + 0: The maximum resident set size (KB) = 488200 Test 005 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_p8 Checking test 006 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -244,14 +244,14 @@ Checking test 006 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 890.287525 - 0: The maximum resident set size (KB) = 1236016 + 0: The total amount of wall time = 899.278624 + 0: The maximum resident set size (KB) = 1233652 Test 006 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control Checking test 007 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -298,14 +298,14 @@ Checking test 007 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.608859 - 0: The maximum resident set size (KB) = 832344 + 0: The total amount of wall time = 1448.306843 + 0: The maximum resident set size (KB) = 831928 Test 007 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_decomp Checking test 008 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1437.164278 - 0: The maximum resident set size (KB) = 827104 + 0: The total amount of wall time = 1464.539447 + 0: The maximum resident set size (KB) = 827212 Test 008 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_2threads Checking test 009 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1480.489248 - 0: The maximum resident set size (KB) = 895324 + 0: The total amount of wall time = 1462.964725 + 0: The maximum resident set size (KB) = 895948 Test 009 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_restart Checking test 010 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -452,14 +452,14 @@ Checking test 010 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 702.856458 - 0: The maximum resident set size (KB) = 541852 + 0: The total amount of wall time = 717.021269 + 0: The maximum resident set size (KB) = 540836 Test 010 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_sfcdiff Checking test 011 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.187627 - 0: The maximum resident set size (KB) = 827704 + 0: The total amount of wall time = 1480.220556 + 0: The maximum resident set size (KB) = 829796 Test 011 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_sfcdiff_decomp Checking test 012 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1406.045133 - 0: The maximum resident set size (KB) = 833276 + 0: The total amount of wall time = 1415.667566 + 0: The maximum resident set size (KB) = 829560 Test 012 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_sfcdiff_restart Checking test 013 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -606,14 +606,14 @@ Checking test 013 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1053.252384 - 0: The maximum resident set size (KB) = 545948 + 0: The total amount of wall time = 1065.371513 + 0: The maximum resident set size (KB) = 542360 Test 013 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control Checking test 014 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -660,14 +660,14 @@ Checking test 014 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.059412 - 0: The maximum resident set size (KB) = 829212 + 0: The total amount of wall time = 1411.668363 + 0: The maximum resident set size (KB) = 828596 Test 014 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_2threads Checking test 015 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1436.275848 - 0: The maximum resident set size (KB) = 887608 + 0: The total amount of wall time = 1432.637850 + 0: The maximum resident set size (KB) = 890156 Test 015 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_decomp Checking test 016 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1392.443678 - 0: The maximum resident set size (KB) = 827172 + 0: The total amount of wall time = 1413.857261 + 0: The maximum resident set size (KB) = 831100 Test 016 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_restart Checking test 017 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -814,14 +814,14 @@ Checking test 017 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1043.142855 - 0: The maximum resident set size (KB) = 539752 + 0: The total amount of wall time = 1039.946418 + 0: The maximum resident set size (KB) = 538228 Test 017 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -868,14 +868,14 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.838232 - 0: The maximum resident set size (KB) = 830088 + 0: The total amount of wall time = 1462.670805 + 0: The maximum resident set size (KB) = 827796 Test 018 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -884,14 +884,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1411.955551 - 0: The maximum resident set size (KB) = 634420 + 0: The total amount of wall time = 1375.296386 + 0: The maximum resident set size (KB) = 641240 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rrfs_conus13km_radar_tten_warm Checking test 020 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -900,14 +900,14 @@ Checking test 020 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1417.480482 - 0: The maximum resident set size (KB) = 640856 + 0: The total amount of wall time = 1451.110870 + 0: The maximum resident set size (KB) = 639480 Test 020 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rrfs_smoke_conus13km_hrrr_warm Checking test 021 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -916,194 +916,194 @@ Checking test 021 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1481.510544 - 0: The maximum resident set size (KB) = 649084 + 0: The total amount of wall time = 1479.772530 + 0: The maximum resident set size (KB) = 647236 Test 021 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_debug Checking test 022 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.596584 - 0: The maximum resident set size (KB) = 471248 + 0: The total amount of wall time = 107.800683 + 0: The maximum resident set size (KB) = 471620 Test 022 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.897629 - 0: The maximum resident set size (KB) = 529092 + 0: The total amount of wall time = 134.256249 + 0: The maximum resident set size (KB) = 524772 Test 023 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 130.215026 - 0: The maximum resident set size (KB) = 559260 + 0: The total amount of wall time = 130.370590 + 0: The maximum resident set size (KB) = 561144 Test 024 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.557797 - 0: The maximum resident set size (KB) = 842748 + 0: The total amount of wall time = 174.473908 + 0: The maximum resident set size (KB) = 844136 Test 025 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.601540 - 0: The maximum resident set size (KB) = 840980 + 0: The total amount of wall time = 171.758892 + 0: The maximum resident set size (KB) = 846088 Test 026 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.979330 - 0: The maximum resident set size (KB) = 923632 + 0: The total amount of wall time = 215.975342 + 0: The maximum resident set size (KB) = 923688 Test 027 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.432795 - 0: The maximum resident set size (KB) = 843028 + 0: The total amount of wall time = 269.932871 + 0: The maximum resident set size (KB) = 845300 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.451794 - 0: The maximum resident set size (KB) = 838316 + 0: The total amount of wall time = 171.484424 + 0: The maximum resident set size (KB) = 843904 Test 029 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.561491 - 0: The maximum resident set size (KB) = 834856 + 0: The total amount of wall time = 177.518919 + 0: The maximum resident set size (KB) = 840964 Test 030 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.011000 - 0: The maximum resident set size (KB) = 483456 + 0: The total amount of wall time = 104.923448 + 0: The maximum resident set size (KB) = 481248 Test 031 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.036204 - 0: The maximum resident set size (KB) = 475876 + 0: The total amount of wall time = 117.773361 + 0: The maximum resident set size (KB) = 471868 Test 032 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.835456 - 0: The maximum resident set size (KB) = 1229644 + 0: The total amount of wall time = 116.365485 + 0: The maximum resident set size (KB) = 1231808 Test 033 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 180.898575 - 0: The maximum resident set size (KB) = 191332 + 0: The total amount of wall time = 182.828761 + 0: The maximum resident set size (KB) = 190804 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1405.874466 - 0: The maximum resident set size (KB) = 686456 + 0: The total amount of wall time = 1424.642281 + 0: The maximum resident set size (KB) = 688080 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1204,14 +1204,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 727.408666 - 0: The maximum resident set size (KB) = 687936 + 0: The total amount of wall time = 723.491451 + 0: The maximum resident set size (KB) = 685544 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1258,14 +1258,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.198670 - 0: The maximum resident set size (KB) = 729348 + 0: The total amount of wall time = 1421.399238 + 0: The maximum resident set size (KB) = 727912 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 718.881813 - 0: The maximum resident set size (KB) = 725632 + 0: The total amount of wall time = 689.988742 + 0: The maximum resident set size (KB) = 726420 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1366,14 +1366,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.439384 - 0: The maximum resident set size (KB) = 684752 + 0: The total amount of wall time = 700.661904 + 0: The maximum resident set size (KB) = 685684 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1412,14 +1412,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1071.498942 - 0: The maximum resident set size (KB) = 507708 + 0: The total amount of wall time = 1063.052830 + 0: The maximum resident set size (KB) = 512596 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1458,14 +1458,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.796401 - 0: The maximum resident set size (KB) = 507376 + 0: The total amount of wall time = 353.031889 + 0: The maximum resident set size (KB) = 507840 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1512,56 +1512,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1055.149030 - 0: The maximum resident set size (KB) = 705552 + 0: The total amount of wall time = 1074.778349 + 0: The maximum resident set size (KB) = 703832 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.578402 - 0: The maximum resident set size (KB) = 702200 + 0: The total amount of wall time = 171.993990 + 0: The maximum resident set size (KB) = 696764 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.637401 - 0: The maximum resident set size (KB) = 704864 + 0: The total amount of wall time = 170.827331 + 0: The maximum resident set size (KB) = 699224 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.812502 - 0: The maximum resident set size (KB) = 713840 + 0: The total amount of wall time = 204.515908 + 0: The maximum resident set size (KB) = 715360 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1626,14 +1626,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1720.514627 - 0: The maximum resident set size (KB) = 1429880 + 0: The total amount of wall time = 1715.031095 + 0: The maximum resident set size (KB) = 1432504 Test 046 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1203.188003 - 0: The maximum resident set size (KB) = 1327932 + 0: The total amount of wall time = 1206.819562 + 0: The maximum resident set size (KB) = 1323932 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1755,25 +1755,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 819.203385 - 0: The maximum resident set size (KB) = 1443564 + 0: The total amount of wall time = 863.287741 + 0: The maximum resident set size (KB) = 1440856 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220919/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17756/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21887/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 168.678171 - 0: The maximum resident set size (KB) = 669696 + 0: The total amount of wall time = 172.228989 + 0: The maximum resident set size (KB) = 670588 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Sep 19 23:29:13 UTC 2022 -Elapsed time: 00h:56m:38s. Have a nice day! +Thu Sep 22 15:03:43 UTC 2022 +Elapsed time: 01h:42m:27s. Have a nice day!