diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index ef03025c14..658d9a65f0 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -4,23 +4,27 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel prepend_path("MODULEPATH", "/contrib/spack-stack-rocky8/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") prepend_path("MODULEPATH", "/apps/modules/modulefiles") -prepend_path("PATH", "/contrib/EPIC/bin") -load("gnu") -load("stack-intel") -load("stack-intel-oneapi-mpi") -stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" +gnu_ver=os.getenv("gnu_ver") or "" +load(pathJoin("gnu", gnu_ver)) + +stack_intel_ver=os.getenv("stack_intel_ver") or "" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.10.0" -load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -unload("gnu") +stack_intel_oneapi_mpi_ver=os.getenv("stack_intel_oneapi_mpi_ver") or "" +load(pathJoin("stack-intel-oneapi-mpi", stack_intel_oneapi_mpi_ver)) + +gnu_ver=os.getenv("gnu_ver") or "" +unload(pathJoin("gnu", gnu_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") diff --git a/tests-dev/baseline_setup.yaml b/tests-dev/baseline_setup.yaml index 18acbf67c5..5cea75996f 100644 --- a/tests-dev/baseline_setup.yaml +++ b/tests-dev/baseline_setup.yaml @@ -54,15 +54,15 @@ jet: QUEUE: batch COMPILE_QUEUE: batch PARTITION: xjet - dprefix: /mnt/lfs4/HFIP/hfv3gfs/${USER} - DISKNM: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT - STMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_BASELINE - PTMP: /mnt/lfs4/HFIP/hfv3gfs/${USER}/RT_RUNDIRS + dprefix: /lfs5/HFIP/hfv3gfs/${USER} + DISKNM: /lfs5/HFIP/hfv3gfs/role.epic/RT + STMP: /lfs5/HFIP/hfv3gfs/${USER}/RT_BASELINE + PTMP: /lfs5/HFIP/hfv3gfs/${USER}/RT_RUNDIRS RUNDIR_ROOT: SCHEDULER: slurm - INPUTDATA_ROOT: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501 - INPUTDATA_ROOT_WW3: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 - INPUTDATA_ROOT_BMIC: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/BM_IC-20220207 + INPUTDATA_ROOT: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501 + INPUTDATA_ROOT_WW3: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/input-data-20240501/WW3_input_data_20240214 + INPUTDATA_ROOT_BMIC: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/BM_IC-20220207 derecho: QUEUE: main COMPILE_QUEUE: main @@ -82,8 +82,8 @@ noaacloud: PARTITION: dprefix: /lustre DISKNM: /contrib/ufs-weather-model/RT - STMP: /lustre/stmp4 - PTMP: /lustre/stmp2 + STMP: /lustre/stmp + PTMP: /lustre/stmp RUNDIR_ROOT: SCHEDULER: slurm INPUTDATA_ROOT: /contrib/ufs-weather-model/RT/NEMSfv3gfs/input-data-20240501 diff --git a/tests-dev/create_log.py b/tests-dev/create_log.py index 6dfee1cbf4..642be7691b 100644 --- a/tests-dev/create_log.py +++ b/tests-dev/create_log.py @@ -3,10 +3,27 @@ import subprocess import yaml from datetime import datetime +#import datetime from ufs_test_utils import get_testcase, write_logfile, delete_files, machine_check_off +def get_timestamps(path): + """Obtain experiment starting and ending time marks through file timestamps + + Args: + path (str): experiment log directory + Returns: + str: experiment starting and ending time strings + """ + dir_list = os.listdir(path) + dt = [] + for f in dir_list: + m_time = os.path.getmtime(path+f) + dt.append(datetime.fromtimestamp(m_time)) + dtsort=sorted(dt) + return str(dtsort[0]),str(dtsort[-1]) + def finish_log(): - """Collects regression test results and generates log file. + """Collect regression test results and generate log file. """ UFS_TEST_YAML = str(os.getenv('UFS_TEST_YAML')) PATHRT = os.getenv('PATHRT') @@ -40,40 +57,46 @@ def finish_log(): COMPILE_ID = apps COMPILE_LOG = 'compile_'+COMPILE_ID+'.log' COMPILE_LOG_TIME ='compile_'+COMPILE_ID+'_timestamp.txt' - with open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG) as f: - if "[100%] Linking Fortran executable" in f.read(): - COMPILE_PASS += 1 - f.seek(0) - for line in f: - if 'export RUNDIR_ROOT=' in line: - RUNDIR_ROOT=line.split("=")[1] - break - compile_err = RUNDIR_ROOT.strip('\n')+'/compile_'+COMPILE_ID+'/err' - with open(compile_err) as ferr: - contents = ferr.read() - count_warning = contents.count(": warning #") - count_remarks = contents.count(": remark #") - ferr.close() - warning_log = "" - if count_warning > 0: - warning_log = "("+str(count_warning)+" warnings" - if count_remarks > 0: - warning_log+= ","+str(count_remarks)+" remarks)" - flog = open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG_TIME) - timing_data = flog.read() - first_line = timing_data.split('\n', 1)[0] - etime = int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip()) - btime = int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip()) - etime_min, etime_sec = divmod(int(etime), 60) - etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" - btime_min, btime_sec = divmod(int(btime), 60) - btime_min = f"{btime_min:02}"; btime_sec = f"{btime_sec:02}" - time_log = " ["+etime_min+':'+etime_sec+', '+btime_min+':'+btime_sec+"]" - flog.close() - compile_log = "PASS -- COMPILE "+COMPILE_ID+time_log+warning_log+"\n" - else: - compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" - f.close() + COMPILE_CHECK1 ='Compile '+COMPILE_ID+' Completed' + COMPILE_CHECK2 ='[100%] Linking Fortran executable' + try: + with open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG) as f: + if COMPILE_CHECK1 in f.read() or COMPILE_CHECK2 in f.read(): + COMPILE_PASS += 1 + f.seek(0) + for line in f: + if 'export RUNDIR_ROOT=' in line: + RUNDIR_ROOT=line.split("=")[1] + break + compile_err = RUNDIR_ROOT.strip('\n')+'/compile_'+COMPILE_ID+'/err' + with open(compile_err) as ferr: + contents = ferr.read() + count_warning = contents.count(": warning #") + count_remarks = contents.count(": remark #") + ferr.close() + warning_log = "" + if count_warning > 0: + warning_log = "("+str(count_warning)+" warnings" + if count_remarks > 0: + warning_log+= ","+str(count_remarks)+" remarks)" + flog = open('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG_TIME) + timing_data = flog.read() + first_line = timing_data.split('\n', 1)[0] + etime = int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip()) + btime = int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip()) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + btime_min, btime_sec = divmod(int(btime), 60) + btime_min = f"{btime_min:02}"; btime_sec = f"{btime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+btime_min+':'+btime_sec+"]" + flog.close() + compile_log = "PASS -- COMPILE "+COMPILE_ID+time_log+warning_log+"\n" + else: + compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" + f.close() + except FileNotFoundError: + compile_log = "FAIL -- COMPILE "+COMPILE_ID+"\n" + print('./logs/log_'+MACHINE_ID+'/'+COMPILE_LOG+': does not exist') run_logs += compile_log else: PASS_TESTS = True @@ -94,47 +117,49 @@ def finish_log(): PASS_CHECK = 'Test '+TEST_ID+' PASS' MAXS_CHECK = 'The maximum resident set size (KB)' pass_flag = False - create_dep_flag = False - if (CREATE_BASELINE == 'true' and not DEP_RUN == ""): - create_dep_flag = True - if not create_dep_flag: + try: with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: if PASS_CHECK in f.read(): pass_flag = True - f.close() - if pass_flag: - f = open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG_TIME) - timing_data = f.read() - first_line = timing_data.split('\n', 1)[0] - etime = str(int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip())) - rtime = str(int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip())) - etime_min, etime_sec = divmod(int(etime), 60) - etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" - rtime_min, rtime_sec = divmod(int(rtime), 60) - rtime_min = f"{rtime_min:02}"; rtime_sec = f"{rtime_sec:02}" - time_log = " ["+etime_min+':'+etime_sec+', '+rtime_min+':'+rtime_sec+"]" - f.close() - with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: - if pass_flag : + f.close() + except FileNotFoundError: + print('./logs/log_'+MACHINE_ID+'/'+TEST_LOG+': does not exist') + if pass_flag: + f = open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG_TIME) + timing_data = f.read() + first_line = timing_data.split('\n', 1)[0] + etime = str(int(first_line.split(",")[4].strip()) - int(first_line.split(",")[1].strip())) + rtime = str(int(first_line.split(",")[3].strip()) - int(first_line.split(",")[2].strip())) + etime_min, etime_sec = divmod(int(etime), 60) + etime_min = f"{etime_min:02}"; etime_sec = f"{etime_sec:02}" + rtime_min, rtime_sec = divmod(int(rtime), 60) + rtime_min = f"{rtime_min:02}"; rtime_sec = f"{rtime_sec:02}" + time_log = " ["+etime_min+':'+etime_sec+', '+rtime_min+':'+rtime_sec+"]" + f.close() + if pass_flag : + with open('./logs/log_'+MACHINE_ID+'/'+TEST_LOG) as f: rtlog_file = f.readlines() for line in rtlog_file: if MAXS_CHECK in line: memsize= line.split('=')[1].strip() test_log = 'PASS -- TEST '+TEST_ID+time_log+' ('+memsize+' MB)\n' PASS_NR += 1 - else: - test_log = 'FAIL -- TEST '+TEST_ID+'\n' - failed_list.append(TEST_NAME+' '+RT_COMPILER) - FAIL_NR += 1 - run_logs += test_log - f.close() + f.close() + else: + test_log = 'FAIL -- TEST '+TEST_ID+'\n' + failed_list.append(TEST_NAME+' '+RT_COMPILER) + FAIL_NR += 1 + run_logs += test_log run_logs += '\n' write_logfile(filename, "a", output=run_logs) - TEST_START_TIME = os.getenv('TEST_START_TIME') - TEST_END_TIME = os.getenv('TEST_END_TIME') - start_time = datetime.strptime(TEST_START_TIME, "%Y%m%d %H:%M:%S") - end_time = datetime.strptime(TEST_END_TIME, "%Y%m%d %H:%M:%S") + TEST_START_TIME, TEST_END_TIME = get_timestamps('./logs/log_'+MACHINE_ID+'/') + + clean_START_TIME= TEST_START_TIME.split('.')[0] + start_time = datetime.strptime(clean_START_TIME, "%Y-%m-%d %H:%M:%S") + clean_END_TIME= TEST_END_TIME.split('.')[0] + end_time = datetime.strptime(clean_END_TIME, "%Y-%m-%d %H:%M:%S") + hours, remainder= divmod((end_time - start_time).total_seconds(), 3600) minutes, seconds= divmod(remainder, 60) hours = int(hours); minutes=int(minutes); seconds =int(seconds) diff --git a/tests-dev/create_xml.py b/tests-dev/create_xml.py index a7462c70bf..b9133b7938 100644 --- a/tests-dev/create_xml.py +++ b/tests-dev/create_xml.py @@ -32,6 +32,7 @@ def rocoto_create_entries(RTPWD,MACHINE_ID,INPUTDATA_ROOT,INPUTDATA_ROOT_WW3,INP + ]> @@ -195,6 +196,7 @@ def write_runtest_env(): export INPUTDATA_ROOT={INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3={INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC={INPUTDATA_ROOT_BMIC} +export INPUTDATA_LM4={INPUTDATA_ROOT}/LM4_input_data export PATHRT={PATHRT} export PATHTR={PATHTR} export NEW_BASELINE={NEW_BASELINE} @@ -216,8 +218,8 @@ def write_runtest_env(): export RTVERBOSE=false """ if ( MACHINE_ID == 'jet' ): - runtest_envs+="export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH" - runtest_envs+="export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages" + runtest_envs += f"export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH\n" + runtest_envs += f"export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages\n" with open(filename,"w+") as f: f.writelines(runtest_envs) diff --git a/tests-dev/logs/RegressionTests_hera.log b/tests-dev/logs/RegressionTests_hera.log index 9cec2a7896..70410a7d83 100644 --- a/tests-dev/logs/RegressionTests_hera.log +++ b/tests-dev/logs/RegressionTests_hera.log @@ -1,31 +1,34 @@ ====START OF hera REGRESSION TESTING LOG==== UFSWM hash used in testing: -5e659f10e5df1f1d1b5eda1c0706927953108f7e +f2d689ee6551f64d5b0dce283191fdc5ac171f3d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -34,377 +37,392 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_852179 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_454162 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [13:57, 13:55](1 warnings,8 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [06:54, 05:59] (3275484 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [16:22, 16:20](1 warnings,8 remarks) -PASS -- TEST cpld_control_gfsv17_intel [18:07, 17:19] (1995288 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [19:10, 18:10] (2156140 MB) -PASS -- TEST cpld_restart_gfsv17_intel [09:22, 08:21] (1244284 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [20:10, 19:27] (1853500 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:26, 16:24](1 warnings,8 remarks) -PASS -- TEST cpld_control_sfs_intel [17:29, 16:57] (1937068 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:41, 05:40](1525 warnings,1998 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [23:50, 23:02] (1923896 MB) - -PASS -- COMPILE s2swa_intel [13:57, 13:55],8 remarks) -PASS -- TEST cpld_control_p8_intel [06:58, 05:59] (3332484 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [07:38, 06:36] (3319044 MB) -PASS -- TEST cpld_restart_p8_intel [04:46, 03:45] (3253540 MB) -PASS -- TEST cpld_control_qr_p8_intel [07:03, 06:08] (3334096 MB) -PASS -- TEST cpld_restart_qr_p8_intel [04:46, 03:35] (3289136 MB) -PASS -- TEST cpld_2threads_p8_intel [06:20, 05:30] (3626160 MB) -PASS -- TEST cpld_decomp_p8_intel [06:54, 06:04] (3323856 MB) -PASS -- TEST cpld_mpi_p8_intel [06:00, 05:13] (3191556 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [06:55, 05:58] (3325868 MB) -PASS -- TEST cpld_control_c192_p8_intel [12:06, 10:18] (3515648 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:03, 06:38] (3634720 MB) -PASS -- TEST cpld_bmark_p8_intel [16:51, 10:24] (4265404 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [13:55, 06:10] (4366120 MB) -PASS -- TEST cpld_s2sa_p8_intel [06:19, 05:23] (3315468 MB) - -PASS -- COMPILE s2sw_intel [13:12, 13:10],8 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [05:47, 04:54] (1990872 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [05:24, 04:28] (2056176 MB) - -PASS -- COMPILE s2swa_debug_intel [05:44, 05:43](1450 warnings,1228 remarks) -PASS -- TEST cpld_debug_p8_intel [09:43, 08:48] (3359844 MB) - -PASS -- COMPILE s2sw_debug_intel [05:16, 05:15](1450 warnings,1228 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [06:59, 06:01] (1989136 MB) - -PASS -- COMPILE s2s_aoflux_intel [12:33, 12:32],1 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:17, 04:22] (2043880 MB) - -PASS -- COMPILE s2s_intel [12:34, 12:33],1 remarks) -PASS -- TEST cpld_control_c48_intel [09:32, 08:56] (3108564 MB) -PASS -- TEST cpld_warmstart_c48_intel [03:14, 02:38] (3095072 MB) -PASS -- TEST cpld_restart_c48_intel [02:06, 01:31] (2521764 MB) - -PASS -- COMPILE s2swa_faster_intel [17:43, 17:42],8 remarks) -PASS -- TEST cpld_control_p8_faster_intel [06:31, 05:32] (3329308 MB) - -PASS -- COMPILE s2sw_pdlib_intel [16:11, 16:11],8 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [18:28, 17:36] (2001816 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [09:26, 08:25] (1268892 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [20:58, 20:01] (1914436 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:21, 05:20](1560 warnings,1998 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [25:39, 24:52] (1945360 MB) - -PASS -- COMPILE atm_dyn32_intel [11:51, 11:50](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:40, 03:24] (709940 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:27, 02:58] (1602864 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:33, 03:00] (1603592 MB) -PASS -- TEST control_latlon_intel [03:22, 02:54] (1604196 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:29, 02:56] (1605116 MB) -PASS -- TEST control_c48_intel [08:03, 07:34] (1766076 MB) -PASS -- TEST control_c48.v2.sfc_intel [07:02, 06:32] (874424 MB) -PASS -- TEST control_c192_intel [11:19, 10:33] (1733616 MB) -PASS -- TEST control_c384_intel [11:55, 10:23] (2009184 MB) -PASS -- TEST control_c384gdas_intel [10:14, 07:52] (1404820 MB) -PASS -- TEST control_stochy_intel [01:53, 01:37] (662192 MB) -PASS -- TEST control_stochy_restart_intel [01:16, 00:59] (512280 MB) -PASS -- TEST control_lndp_intel [01:47, 01:33] (668412 MB) -PASS -- TEST control_iovr4_intel [03:11, 02:55] (659672 MB) -PASS -- TEST control_iovr5_intel [03:09, 02:55] (659496 MB) -PASS -- TEST control_p8_intel [04:05, 03:19] (1897244 MB) -PASS -- TEST control_p8.v2.sfc_intel [04:00, 03:10] (1896492 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:44, 03:04] (1879792 MB) -PASS -- TEST control_restart_p8_intel [02:22, 01:45] (1142152 MB) -PASS -- TEST control_noqr_p8_intel [03:38, 03:04] (1874324 MB) -PASS -- TEST control_restart_noqr_p8_intel [02:20, 01:44] (1161668 MB) -PASS -- TEST control_decomp_p8_intel [03:43, 03:10] (1852628 MB) -PASS -- TEST control_2threads_p8_intel [03:27, 02:54] (1984284 MB) -PASS -- TEST control_p8_lndp_intel [05:57, 05:26] (1876244 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:45, 04:07] (1950676 MB) -PASS -- TEST control_p8_mynn_intel [03:52, 03:09] (1901556 MB) -PASS -- TEST merra2_thompson_intel [04:11, 03:33] (1889680 MB) -PASS -- TEST regional_control_intel [05:58, 05:27] (1094840 MB) -PASS -- TEST regional_restart_intel [03:24, 03:00] (1099188 MB) -PASS -- TEST regional_decomp_intel [06:15, 05:48] (1096988 MB) -PASS -- TEST regional_2threads_intel [03:52, 03:27] (1094616 MB) -PASS -- TEST regional_noquilt_intel [05:42, 05:16] (1396724 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:52, 05:27] (1101484 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:45, 05:21] (1105076 MB) -PASS -- TEST regional_wofs_intel [07:24, 06:55] (1897552 MB) - -PASS -- COMPILE rrfs_intel [11:25, 11:23](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [08:12, 07:44] (1113888 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:02, 04:11] (1303848 MB) -PASS -- TEST rap_decomp_intel [08:40, 08:09] (1045768 MB) -PASS -- TEST rap_2threads_intel [07:53, 07:25] (1186000 MB) -PASS -- TEST rap_restart_intel [04:32, 04:01] (1105316 MB) -PASS -- TEST rap_sfcdiff_intel [08:18, 07:44] (1112948 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [08:36, 08:09] (1033808 MB) -PASS -- TEST rap_sfcdiff_restart_intel [06:20, 05:48] (1137476 MB) -PASS -- TEST hrrr_control_intel [04:26, 03:58] (1041044 MB) -PASS -- TEST hrrr_control_decomp_intel [04:38, 04:13] (1031336 MB) -PASS -- TEST hrrr_control_2threads_intel [04:03, 03:39] (1116748 MB) -PASS -- TEST hrrr_control_restart_intel [02:30, 02:10] (999008 MB) -PASS -- TEST rrfs_v1beta_intel [08:07, 07:35] (1103292 MB) -PASS -- TEST rrfs_v1nssl_intel [09:37, 09:22] (1976260 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:20, 09:04] (2071088 MB) - -PASS -- COMPILE csawmg_intel [10:28, 10:26] -PASS -- TEST control_csawmg_intel [06:36, 06:09] (1021928 MB) -PASS -- TEST control_ras_intel [03:27, 03:15] (750380 MB) - -PASS -- COMPILE csawmg_gnu [04:22, 04:20] -PASS -- TEST control_csawmg_gnu [08:54, 08:26] (750412 MB) - -PASS -- COMPILE wam_intel [10:34, 10:33],1 remarks) -PASS -- TEST control_wam_intel [11:23, 10:50] (1665804 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [14:47, 14:46],1 remarks) -PASS -- TEST control_p8_faster_intel [03:30, 02:52] (1877100 MB) -PASS -- TEST regional_control_faster_intel [05:15, 04:51] (1091668 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [06:39, 06:37](884 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [03:16, 02:47] (1604436 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:12, 02:38] (1623716 MB) -PASS -- TEST control_stochy_debug_intel [03:21, 03:06] (833528 MB) -PASS -- TEST control_lndp_debug_intel [03:11, 02:55] (832248 MB) -PASS -- TEST control_csawmg_debug_intel [04:42, 04:19] (1155312 MB) -PASS -- TEST control_ras_debug_intel [03:08, 02:55] (844692 MB) -PASS -- TEST control_diag_debug_intel [03:26, 02:52] (1668648 MB) -PASS -- TEST control_debug_p8_intel [03:42, 03:13] (1889836 MB) -PASS -- TEST regional_debug_intel [18:09, 17:43] (1103940 MB) -PASS -- TEST rap_control_debug_intel [05:11, 04:58] (1218676 MB) -PASS -- TEST hrrr_control_debug_intel [05:16, 05:01] (1213800 MB) -PASS -- TEST hrrr_gf_debug_intel [05:17, 05:04] (1217072 MB) -PASS -- TEST hrrr_c3_debug_intel [05:17, 05:05] (1171408 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [05:18, 05:05] (1213252 MB) -PASS -- TEST rap_diag_debug_intel [05:37, 05:11] (1306372 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [05:21, 05:09] (1221840 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [05:20, 05:07] (1222464 MB) -PASS -- TEST rap_lndp_debug_intel [05:13, 04:59] (1222344 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [05:21, 05:06] (1219020 MB) -PASS -- TEST rap_noah_debug_intel [05:03, 04:48] (1218732 MB) -PASS -- TEST rap_sfcdiff_debug_intel [05:16, 05:04] (1211628 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:22, 08:07] (1220132 MB) -PASS -- TEST rrfs_v1beta_debug_intel [05:16, 05:03] (1224268 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:21, 06:06] (1216008 MB) -PASS -- TEST rap_flake_debug_intel [05:13, 04:57] (1221016 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:09, 08:41] (1229176 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [04:54, 04:53] -PASS -- TEST control_csawmg_debug_gnu [02:53, 02:23] (737988 MB) - -PASS -- COMPILE wam_debug_intel [03:59, 03:58](839 warnings,1 remarks) -PASS -- TEST control_wam_debug_intel [14:14, 13:35] (1691584 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [10:30, 10:30](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:40, 03:52] (1169156 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [06:53, 06:28] (1058076 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [03:49, 03:23] (989796 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:28, 06:05] (1097024 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:37, 03:10] (964200 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:06, 03:41] (927508 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:24, 04:53] (1037848 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (928612 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:59, 13:58](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:46, 02:06] (1214948 MB) -PASS -- TEST conus13km_2threads_intel [01:27, 00:55] (1125956 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:57, 01:23] (1113700 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [10:39, 10:39](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:42, 04:12] (988812 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:12, 04:59] (1094828 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:09, 04:52] (1102540 MB) -PASS -- TEST conus13km_debug_intel [15:11, 14:37] (1250436 MB) -PASS -- TEST conus13km_debug_qr_intel [15:23, 14:52] (946604 MB) -PASS -- TEST conus13km_debug_2threads_intel [10:16, 09:45] (1163920 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [15:08, 14:38] (1306500 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:07, 04:06](787 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:44, 05:27] (1141900 MB) - -PASS -- COMPILE hafsw_intel [12:30, 12:30](1 warnings,8 remarks) -PASS -- TEST hafs_regional_atm_intel [06:04, 04:59] (742632 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:06, 05:47] (1111736 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [08:02, 06:53] (848972 MB) -PASS -- TEST hafs_regional_atm_wav_intel [14:31, 13:24] (871644 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:33, 15:18] (885820 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [06:15, 05:28] (503956 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:49, 06:41] (523248 MB) -PASS -- TEST hafs_global_1nest_atm_intel [03:15, 02:41] (376832 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:52, 07:07] (486708 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:24, 03:51] (533848 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:17, 03:36] (530244 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [04:52, 04:09] (594000 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:27, 01:08] (409712 MB) -PASS -- TEST gnv1_nested_intel [05:17, 04:01] (1744792 MB) - -PASS -- COMPILE hafsw_debug_intel [04:38, 04:37](1467 warnings,1501 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:59, 13:11] (595672 MB) - -PASS -- COMPILE hafsw_faster_intel [16:34, 16:33],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [09:29, 08:41] (684072 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [09:46, 08:50] (749224 MB) - -PASS -- COMPILE hafs_mom6w_intel [12:27, 12:25],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [07:14, 06:24] (742820 MB) - -PASS -- COMPILE hafs_all_intel [11:44, 11:43],7 remarks) -PASS -- TEST hafs_regional_docn_intel [07:30, 06:29] (837364 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [07:31, 06:28] (807508 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [16:49, 16:08] (1222660 MB) - -PASS -- COMPILE datm_cdeps_intel [06:40, 06:39] -PASS -- TEST datm_cdeps_control_cfsr_intel [02:53, 02:44] (1147328 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:53, 01:43] (1099196 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [02:42, 02:35] (1024148 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:00, 02:42] (1033352 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:46, 02:39] (1024528 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:54, 02:42] (1160140 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:57, 02:46] (1168368 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:47, 02:40] (1022220 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:57, 06:39] (1070768 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:58, 06:39] (1042496 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:48, 02:41] (1160968 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:10, 04:02] (2452188 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:14, 04:03] (2496684 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:20, 03:19](2 warnings -PASS -- TEST datm_cdeps_debug_cfsr_intel [06:28, 06:20] (1093840 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [06:38, 06:37] -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:04, 02:53] (1148448 MB) - -PASS -- COMPILE datm_cdeps_land_intel [01:12, 01:12],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:12, 00:49] (260324 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:09, 00:51] (328172 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:46, 00:30] (321732 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [11:21, 11:19],1 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:35, 03:42] (1970100 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [11:08, 11:05],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:31, 03:35] (1954524 MB) - -PASS -- COMPILE atml_intel [12:25, 12:24](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [05:14, 04:21] (1851548 MB) -PASS -- TEST control_p8_atmlnd_intel [05:08, 04:22] (1879560 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:04, 02:26] (1106320 MB) - -PASS -- COMPILE atml_debug_intel [05:01, 05:00](882 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:47, 05:51] (1891340 MB) - -PASS -- COMPILE atmw_intel [11:32, 11:31],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:34, 01:55] (1906440 MB) - -PASS -- COMPILE atmaero_intel [11:23, 11:22],1 remarks) -PASS -- TEST atmaero_control_p8_intel [04:53, 04:09] (3182560 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:38, 04:54] (3084264 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [06:26, 05:41] (3044004 MB) - -PASS -- COMPILE atmaq_debug_intel [04:16, 04:15](884 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [23:00, 21:09] (4478468 MB) - -PASS -- COMPILE atm_gnu [04:45, 04:43] -PASS -- TEST control_c48_gnu [11:43, 11:12] (1539040 MB) -PASS -- TEST control_stochy_gnu [03:34, 03:18] (505064 MB) -PASS -- TEST control_ras_gnu [05:01, 04:46] (514472 MB) -PASS -- TEST control_p8_gnu [05:40, 04:51] (1463300 MB) -PASS -- TEST control_p8_ugwpv1_gnu [05:31, 04:47] (1463428 MB) -PASS -- TEST control_flake_gnu [10:25, 10:10] (549156 MB) - -PASS -- COMPILE rrfs_gnu [04:42, 04:40] -PASS -- TEST rap_control_gnu [11:15, 10:48] (816436 MB) -PASS -- TEST rap_decomp_gnu [11:18, 10:54] (851764 MB) -PASS -- TEST rap_2threads_gnu [10:12, 09:46] (932332 MB) -PASS -- TEST rap_restart_gnu [06:01, 05:28] (578728 MB) -PASS -- TEST rap_sfcdiff_gnu [11:21, 10:47] (814476 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [11:32, 11:06] (813696 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [08:37, 08:01] (582772 MB) -PASS -- TEST hrrr_control_gnu [05:59, 05:31] (814048 MB) -PASS -- TEST hrrr_control_noqr_gnu [05:59, 05:31] (799468 MB) -PASS -- TEST hrrr_control_2threads_gnu [05:24, 04:59] (921020 MB) -PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:32] (850092 MB) -PASS -- TEST hrrr_control_restart_gnu [03:12, 02:51] (566496 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [03:10, 02:48] (656112 MB) -PASS -- TEST rrfs_v1beta_gnu [11:05, 10:27] (813500 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [07:53, 07:52] -PASS -- TEST control_diag_debug_gnu [02:17, 01:40] (1275460 MB) -PASS -- TEST regional_debug_gnu [11:22, 10:54] (748640 MB) -PASS -- TEST rap_control_debug_gnu [02:56, 02:41] (825548 MB) -PASS -- TEST hrrr_control_debug_gnu [02:57, 02:39] (816988 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:58, 02:41] (824812 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:54, 02:41] (828356 MB) -PASS -- TEST rap_diag_debug_gnu [03:16, 02:50] (911492 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [04:23, 04:07] (825672 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:53, 02:38] (825244 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [03:02, 02:38] (818684 MB) -PASS -- TEST control_ras_debug_gnu [01:49, 01:35] (456872 MB) -PASS -- TEST control_stochy_debug_gnu [02:02, 01:45] (452296 MB) -PASS -- TEST control_debug_p8_gnu [02:26, 01:48] (1442360 MB) -PASS -- TEST rap_flake_debug_gnu [02:58, 02:42] (820440 MB) -PASS -- TEST rap_clm_lake_debug_gnu [03:16, 03:00] (821680 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:50, 04:21] (832912 MB) - -PASS -- COMPILE wam_debug_gnu [03:19, 03:18] - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:55, 04:54] -PASS -- TEST rap_control_dyn32_phy32_gnu [09:51, 09:21] (707504 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:25, 04:58] (710952 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:08, 08:38] (753076 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [04:56, 04:30] (745716 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:31, 05:03] (707868 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [07:30, 06:59] (553380 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:57, 02:32] (536668 MB) -PASS -- TEST conus13km_control_gnu [03:59, 03:13] (878456 MB) -PASS -- TEST conus13km_2threads_gnu [06:44, 06:06] (882028 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [02:22, 01:48] (555420 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [10:58, 10:57] -PASS -- TEST rap_control_dyn64_phy32_gnu [06:11, 05:39] (738904 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:43, 07:42] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:54, 02:37] (714828 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:48, 02:31] (714776 MB) -PASS -- TEST conus13km_debug_gnu [07:47, 07:09] (893464 MB) -PASS -- TEST conus13km_debug_qr_gnu [07:38, 06:58] (582268 MB) -PASS -- TEST conus13km_debug_2threads_gnu [07:56, 07:26] (900368 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [07:37, 07:08] (960144 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:41, 07:40] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:53, 02:39] (734672 MB) - -PASS -- COMPILE s2swa_gnu [16:44, 16:43] -PASS -- COMPILE s2s_gnu [15:45, 15:44] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [08:31, 07:29] (1536368 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:24, 03:23] +PASS -- COMPILE s2swa_32bit_intel [13:10, 13:09](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [11:30, 10:35] (3317784 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [16:22, 16:21](1 warnings,8 remarks) +PASS -- TEST cpld_control_gfsv17_intel [18:42, 17:53] (1957392 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [19:32, 18:31] (2130556 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:29, 08:31] (1261920 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [20:42, 19:54] (1860868 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:07, 16:06](1 warnings,8 remarks) +PASS -- TEST cpld_control_sfs_intel [18:03, 17:29] (1978276 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:44, 05:43](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [27:14, 26:25] (1926868 MB) + +PASS -- COMPILE s2swa_intel [13:09, 13:08](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_intel [13:54, 12:58] (3324168 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [14:03, 13:07] (3337444 MB) +PASS -- TEST cpld_restart_p8_intel [08:05, 07:02] (3258636 MB) +PASS -- TEST cpld_control_qr_p8_intel [13:58, 13:01] (3366012 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:12, 07:06] (3281508 MB) +PASS -- TEST cpld_2threads_p8_intel [13:13, 12:20] (3637392 MB) +PASS -- TEST cpld_decomp_p8_intel [13:50, 13:04] (3328844 MB) +PASS -- TEST cpld_mpi_p8_intel [11:34, 10:39] (3210484 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [13:56, 13:00] (3339928 MB) +PASS -- TEST cpld_control_c192_p8_intel [12:05, 10:23] (3521864 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:51, 06:28] (3617208 MB) +PASS -- TEST cpld_bmark_p8_intel [22:10, 16:01] (4285360 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [18:00, 09:24] (4363836 MB) +PASS -- TEST cpld_s2sa_p8_intel [08:21, 07:29] (3312640 MB) + +PASS -- COMPILE s2sw_intel [12:12, 12:11](1 warnings,8 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [08:47, 07:58] (1957128 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [11:54, 11:00] (2042996 MB) + +PASS -- COMPILE s2swa_debug_intel [05:47, 05:46](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_p8_intel [23:16, 22:19] (3405880 MB) + +PASS -- COMPILE s2sw_debug_intel [05:31, 05:30](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:22, 09:28] (2009080 MB) + +PASS -- COMPILE s2s_aoflux_intel [11:24, 11:23],1 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:18, 04:25] (2009052 MB) + +PASS -- COMPILE s2s_intel [11:43, 11:42](1 warnings,1 remarks) +PASS -- TEST cpld_control_c48_intel [08:16, 07:45] (3037340 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:50, 02:18] (3025504 MB) +PASS -- TEST cpld_restart_c48_intel [01:53, 01:19] (2478320 MB) + +PASS -- COMPILE s2swa_faster_intel [17:14, 17:13](1 warnings,8 remarks) +PASS -- TEST cpld_control_p8_faster_intel [13:25, 12:27] (3322952 MB) + +PASS -- COMPILE s2sw_pdlib_intel [15:56, 15:56](1 warnings,8 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [29:04, 28:15] (1990480 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [15:04, 13:58] (1275344 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [33:40, 32:50] (1935116 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:54, 05:54](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [30:54, 30:08] (1946868 MB) + +PASS -- COMPILE atm_dyn32_intel [10:40, 10:39](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [06:49, 06:38] (859104 MB) +PASS -- TEST baroclinic_wave_intel [06:07, 05:02] (1487880 MB) +PASS -- TEST control_flake_intel [03:37, 03:21] (702836 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:48, 03:18] (1582512 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:55, 03:21] (1587900 MB) +PASS -- TEST control_latlon_intel [03:46, 03:17] (1555096 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:45, 03:14] (1581608 MB) +PASS -- TEST control_c48_intel [12:10, 11:42] (1720732 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:51, 06:38] (851420 MB) +PASS -- TEST control_c192_intel [12:51, 12:03] (1706936 MB) +PASS -- TEST control_c384_intel [15:28, 13:47] (1985220 MB) +PASS -- TEST control_c384gdas_intel [10:35, 08:21] (1372500 MB) +PASS -- TEST control_stochy_intel [01:53, 01:38] (654376 MB) +PASS -- TEST control_stochy_restart_intel [01:31, 01:01] (500652 MB) +PASS -- TEST control_lndp_intel [01:51, 01:35] (655072 MB) +PASS -- TEST control_iovr4_intel [02:48, 02:30] (649700 MB) +PASS -- TEST control_iovr5_intel [02:48, 02:31] (648924 MB) +PASS -- TEST control_p8_intel [04:26, 03:43] (1886424 MB) +PASS -- TEST control_p8.v2.sfc_intel [03:54, 03:08] (1889208 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:16, 03:37] (1863708 MB) +PASS -- TEST control_restart_p8_intel [02:44, 02:06] (1125100 MB) +PASS -- TEST control_noqr_p8_intel [04:17, 03:41] (1877096 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:46, 02:02] (1166916 MB) +PASS -- TEST control_decomp_p8_intel [04:24, 03:48] (1868888 MB) +PASS -- TEST control_2threads_p8_intel [04:06, 03:33] (1954436 MB) +PASS -- TEST control_p8_lndp_intel [07:16, 06:44] (1857320 MB) +PASS -- TEST control_p8_rrtmgp_intel [04:51, 04:13] (1953868 MB) +PASS -- TEST control_p8_mynn_intel [03:55, 03:09] (1897456 MB) +PASS -- TEST merra2_thompson_intel [04:03, 03:25] (1884636 MB) +PASS -- TEST regional_control_intel [05:49, 05:24] (1089708 MB) +PASS -- TEST regional_restart_intel [03:24, 02:57] (1079256 MB) +PASS -- TEST regional_decomp_intel [06:08, 05:43] (1078316 MB) +PASS -- TEST regional_2threads_intel [04:00, 03:28] (1078124 MB) +PASS -- TEST regional_noquilt_intel [05:49, 05:22] (1389952 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:52, 05:24] (1087332 MB) +PASS -- TEST regional_2dwrtdecomp_intel [05:52, 05:22] (1083848 MB) +PASS -- TEST regional_wofs_intel [07:27, 06:59] (1902944 MB) + +PASS -- COMPILE rrfs_intel [10:24, 10:23](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [08:23, 07:51] (1101128 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:01, 04:13] (1249680 MB) +PASS -- TEST rap_decomp_intel [08:39, 08:13] (1030776 MB) +PASS -- TEST rap_2threads_intel [07:53, 07:26] (1162928 MB) +PASS -- TEST rap_restart_intel [04:41, 04:03] (1101340 MB) +PASS -- TEST rap_sfcdiff_intel [08:18, 07:49] (1093532 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [08:38, 08:09] (1035708 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:32, 05:54] (1121252 MB) +PASS -- TEST hrrr_control_intel [04:42, 04:10] (1024796 MB) +PASS -- TEST hrrr_control_decomp_intel [04:41, 04:09] (1024304 MB) +PASS -- TEST hrrr_control_2threads_intel [04:08, 03:43] (1094908 MB) +PASS -- TEST hrrr_control_restart_intel [02:33, 02:11] (995672 MB) +PASS -- TEST rrfs_v1beta_intel [08:19, 07:44] (1094336 MB) +PASS -- TEST rrfs_v1nssl_intel [09:56, 09:35] (1974348 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:28, 09:10] (2061176 MB) + +PASS -- COMPILE csawmg_intel [09:59, 09:58] +PASS -- TEST control_csawmg_intel [06:42, 06:14] (1018472 MB) +PASS -- TEST control_ras_intel [03:33, 03:19] (742780 MB) + +PASS -- COMPILE wam_intel [10:09, 10:07],1 remarks) +PASS -- TEST control_wam_intel [12:02, 11:24] (1659012 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [10:30, 10:28],1 remarks) +PASS -- TEST control_p8_faster_intel [03:34, 02:51] (1881924 MB) +PASS -- TEST regional_control_faster_intel [05:35, 05:01] (1090696 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:09, 08:08](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:56, 02:21] (1588428 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:56, 02:20] (1603936 MB) +PASS -- TEST control_stochy_debug_intel [03:35, 03:17] (833228 MB) +PASS -- TEST control_lndp_debug_intel [03:10, 02:55] (832908 MB) +PASS -- TEST control_csawmg_debug_intel [05:02, 04:32] (1136916 MB) +PASS -- TEST control_ras_debug_intel [03:17, 03:03] (837468 MB) +PASS -- TEST control_diag_debug_intel [03:36, 02:55] (1686996 MB) +PASS -- TEST control_debug_p8_intel [03:15, 02:43] (1893608 MB) +PASS -- TEST regional_debug_intel [17:50, 17:17] (1096720 MB) +PASS -- TEST rap_control_debug_intel [05:20, 05:04] (1212708 MB) +PASS -- TEST hrrr_control_debug_intel [05:15, 04:57] (1201416 MB) +PASS -- TEST hrrr_gf_debug_intel [05:20, 05:04] (1218240 MB) +PASS -- TEST hrrr_c3_debug_intel [05:35, 05:21] (1215000 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:21, 05:07] (1221380 MB) +PASS -- TEST rap_diag_debug_intel [06:02, 05:28] (1296364 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:43, 05:26] (1213688 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:35, 05:18] (1211856 MB) +PASS -- TEST rap_lndp_debug_intel [05:36, 05:19] (1216568 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:19, 05:04] (1211588 MB) +PASS -- TEST rap_noah_debug_intel [05:30, 05:12] (1215124 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:28, 05:11] (1210684 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:43, 08:23] (1211052 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:19, 05:03] (1210360 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:38, 06:20] (1209768 MB) +PASS -- TEST rap_flake_debug_intel [05:28, 05:11] (1217524 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:40, 08:59] (1213324 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:29, 04:28] +PASS -- TEST control_csawmg_debug_gnu [02:58, 02:28] (721988 MB) + +PASS -- COMPILE wam_debug_intel [04:48, 04:47](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [14:48, 14:01] (1647624 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [10:13, 10:12](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:03, 04:08] (1125764 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:04, 06:33] (1048748 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:03, 03:31] (982704 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [06:46, 06:18] (1076680 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:43, 03:13] (963916 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:02, 03:38] (927648 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [05:33, 04:58] (1033672 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:14, 01:53] (925820 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [10:13, 10:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:55, 02:06] (1186804 MB) +PASS -- TEST conus13km_2threads_intel [01:45, 01:02] (1097620 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:59, 01:19] (1096268 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [10:14, 10:13](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:55, 04:16] (976524 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [04:51, 04:50](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:26, 05:12] (1089144 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:19, 05:03] (1078632 MB) +PASS -- TEST conus13km_debug_intel [15:10, 14:21] (1237480 MB) +PASS -- TEST conus13km_debug_qr_intel [15:10, 14:26] (935592 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:45, 08:09] (1162052 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:42, 14:07] (1300948 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:50, 04:49](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:18, 05:04] (1151004 MB) + +PASS -- COMPILE hafsw_intel [11:37, 11:36](1 warnings,8 remarks) +PASS -- TEST hafs_regional_atm_intel [06:23, 05:14] (721192 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:19, 06:51] (1095328 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [08:40, 07:22] (812748 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:09, 13:59] (846228 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [17:04, 15:38] (868492 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:31, 05:41] (492604 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:12, 07:00] (507444 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:27, 02:49] (365216 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:14, 07:45] (465524 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:29, 03:53] (519988 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:27, 03:43] (521444 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:05, 04:16] (570212 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:32, 01:11] (397892 MB) +PASS -- TEST gnv1_nested_intel [05:37, 04:13] (1705680 MB) + +PASS -- COMPILE hafsw_debug_intel [05:28, 05:27](1465 warnings,1501 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:01, 13:12] (586896 MB) + +PASS -- COMPILE hafsw_faster_intel [11:19, 11:18],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [10:04, 09:09] (641276 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [10:18, 09:18] (728436 MB) + +PASS -- COMPILE hafs_mom6w_intel [11:51, 11:50],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [08:18, 06:45] (719760 MB) + +PASS -- COMPILE hafs_all_intel [11:08, 11:07],7 remarks) +PASS -- TEST hafs_regional_docn_intel [08:11, 07:05] (816940 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [08:27, 07:16] (793984 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:10, 16:28] (1218568 MB) + +PASS -- COMPILE datm_cdeps_intel [06:49, 06:48] +PASS -- TEST datm_cdeps_control_cfsr_intel [03:04, 02:54] (1135728 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:58, 01:42] (1104204 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [02:58, 02:48] (1026148 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:09, 03:00] (1025708 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:58, 02:47] (1018316 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:08, 02:58] (1150284 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:04, 02:55] (1159516 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:50, 02:41] (1027196 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:44, 06:31] (1071044 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:25, 06:20] (1041660 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:57, 02:49] (1135368 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:10, 04:00] (2506364 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:14, 04:03] (2513316 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:23, 03:23](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:54, 06:44] (1072348 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:48, 06:47] +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:59, 02:50] (1138860 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:11, 01:10],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:08, 00:46] (263608 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:09, 00:53] (325140 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:44, 00:30] (329204 MB) + +PASS -- COMPILE datm_cdeps_lm4_intel [01:19, 01:19] +PASS -- TEST datm_cdeps_lm4_gswp3_intel [00:52, 00:32] (567508 MB) +PASS -- TEST datm_cdeps_lm4_gswp3_rst_intel [00:42, 00:19] (454664 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:50, 10:48],1 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:49, 03:58] (1972556 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [10:33, 10:31](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:05, 08:14] (1982928 MB) + +PASS -- COMPILE atml_intel [11:11, 11:10](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [05:18, 04:29] (1839752 MB) +PASS -- TEST control_p8_atmlnd_intel [05:19, 04:29] (1842324 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:19, 02:38] (1095400 MB) + +PASS -- COMPILE atml_debug_intel [06:03, 06:02](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:49, 05:58] (1870948 MB) + +PASS -- COMPILE atmw_intel [10:53, 10:53],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:39, 01:59] (1904504 MB) + +PASS -- COMPILE atmaero_intel [10:41, 10:40],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:02, 04:16] (3180436 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:53, 05:06] (3071960 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [05:52, 05:02] (3104208 MB) + +PASS -- COMPILE atmaq_debug_intel [04:59, 04:58](882 warnings,6 remarks) + +PASS -- COMPILE atm_fbh_intel [09:53, 09:53](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [12:08, 11:51] (1070988 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intelllvm [06:53, 06:52](5 warnings +PASS -- TEST rap_control_dyn32_phy32_intelllvm [08:57, 08:26] (1047336 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intelllvm [06:39, 06:38](5 warnings +PASS -- TEST rap_control_dyn64_phy32_intelllvm [05:32, 04:58] (977780 MB) + +PASS -- COMPILE atm_gnu [04:30, 04:29] +PASS -- TEST 2020_CAPE_gnu [11:44, 11:33] (728876 MB) +PASS -- TEST baroclinic_wave_gnu [11:21, 10:20] (962148 MB) +PASS -- TEST control_c48_gnu [10:09, 09:34] (1508744 MB) +PASS -- TEST control_stochy_gnu [03:50, 03:33] (493536 MB) +PASS -- TEST control_ras_gnu [05:21, 05:01] (500640 MB) +PASS -- TEST control_p8_gnu [06:18, 05:21] (1453992 MB) +PASS -- TEST control_p8_ugwpv1_gnu [05:56, 05:13] (1454088 MB) +PASS -- TEST control_flake_gnu [10:47, 10:32] (537420 MB) + +PASS -- COMPILE rrfs_gnu [04:29, 04:28] +PASS -- TEST rap_control_gnu [11:52, 11:22] (812340 MB) +PASS -- TEST rap_decomp_gnu [12:05, 11:38] (807456 MB) +PASS -- TEST rap_2threads_gnu [10:58, 10:27] (925008 MB) +PASS -- TEST rap_restart_gnu [06:35, 05:54] (575764 MB) +PASS -- TEST rap_sfcdiff_gnu [12:06, 11:29] (812636 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [12:12, 11:37] (806676 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [09:16, 08:31] (577804 MB) +PASS -- TEST hrrr_control_gnu [06:23, 05:55] (810392 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:23, 05:52] (830828 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:42, 05:20] (907960 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:15, 05:53] (841024 MB) +PASS -- TEST hrrr_control_restart_gnu [03:35, 03:07] (561264 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:30, 03:00] (650604 MB) +PASS -- TEST rrfs_v1beta_gnu [11:42, 11:07] (804816 MB) + +PASS -- COMPILE csawmg_gnu [03:52, 03:51] +PASS -- TEST control_csawmg_gnu [09:07, 08:37] (746052 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:34, 06:33] +PASS -- TEST control_diag_debug_gnu [02:16, 01:45] (1270876 MB) +PASS -- TEST regional_debug_gnu [11:34, 11:06] (753144 MB) +PASS -- TEST rap_control_debug_gnu [02:54, 02:41] (829548 MB) +PASS -- TEST hrrr_control_debug_gnu [02:51, 02:38] (817900 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:58, 02:42] (825588 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:55, 02:40] (820180 MB) +PASS -- TEST rap_diag_debug_gnu [03:25, 02:57] (904356 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [04:26, 04:10] (818016 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [03:06, 02:52] (823460 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:57, 02:42] (819252 MB) +PASS -- TEST control_ras_debug_gnu [01:52, 01:38] (455860 MB) +PASS -- TEST control_stochy_debug_gnu [01:57, 01:44] (447536 MB) +PASS -- TEST control_debug_p8_gnu [02:14, 01:42] (1427028 MB) +PASS -- TEST rap_flake_debug_gnu [02:57, 02:42] (820132 MB) +PASS -- TEST rap_clm_lake_debug_gnu [03:05, 02:51] (825700 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:55, 04:27] (822924 MB) + +PASS -- COMPILE wam_debug_gnu [02:27, 02:25] + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:10, 04:09] +PASS -- TEST rap_control_dyn32_phy32_gnu [10:17, 09:50] (696556 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:38, 05:15] (693260 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:29, 09:04] (741420 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:11, 04:44] (744556 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [05:44, 05:18] (693264 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [07:59, 07:19] (549440 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [03:06, 02:39] (534208 MB) +PASS -- TEST conus13km_control_gnu [03:59, 03:12] (868928 MB) +PASS -- TEST conus13km_2threads_gnu [06:02, 05:29] (871316 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:25, 01:49] (550128 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [09:47, 09:46] +PASS -- TEST rap_control_dyn64_phy32_gnu [06:27, 05:56] (721192 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [06:37, 06:37] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:53, 02:38] (709736 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:49, 02:33] (704188 MB) +PASS -- TEST conus13km_debug_gnu [07:38, 06:59] (880968 MB) +PASS -- TEST conus13km_debug_qr_gnu [07:51, 07:16] (570624 MB) +PASS -- TEST conus13km_debug_2threads_gnu [08:16, 07:42] (885280 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [07:40, 07:05] (948688 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [06:36, 06:35] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [03:04, 02:50] (726468 MB) + +PASS -- COMPILE s2swa_gnu [16:31, 16:30] +PASS -- COMPILE s2s_gnu [15:56, 15:55] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [20:03, 18:59] (1507008 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:07, 03:06] PASS -- COMPILE s2sw_pdlib_gnu [16:15, 16:14] -PASS -- TEST cpld_control_pdlib_p8_gnu [20:46, 19:54] (1458072 MB) +PASS -- TEST cpld_control_pdlib_p8_gnu [32:09, 31:10] (1448308 MB) -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:13, 03:12] -PASS -- TEST cpld_debug_pdlib_p8_gnu [14:31, 13:36] (1451368 MB) +PASS -- COMPILE s2sw_pdlib_debug_gnu [02:57, 02:56] -PASS -- COMPILE datm_cdeps_gnu [15:42, 15:41] -PASS -- TEST datm_cdeps_control_cfsr_gnu [03:16, 03:06] (682964 MB) +PASS -- COMPILE datm_cdeps_gnu [15:35, 15:33] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:21, 03:12] (693868 MB) SYNOPSIS: -Starting Date/Time: 20240727 20:11:02 -Ending Date/Time: 20240728 00:59:44 -Total Time: 04h:48m:42s -Compiles Completed: 57/57 -Tests Completed: 245/245 +Starting Date/Time: 2024-11-11 22:51:04 +Ending Date/Time: 2024-11-12 04:00:52 +Total Time: 05h:09m:48s +Compiles Completed: 61/61 +Tests Completed: 252/252 NOTES: diff --git a/tests-dev/logs/RegressionTests_hercules.log b/tests-dev/logs/RegressionTests_hercules.log index cae5c403c8..6f53f528f3 100644 --- a/tests-dev/logs/RegressionTests_hercules.log +++ b/tests-dev/logs/RegressionTests_hercules.log @@ -1,31 +1,34 @@ ====START OF hercules REGRESSION TESTING LOG==== UFSWM hash used in testing: -17a83e2be289181af20ba9fec4ce683393447809 +e366ec57380a76f1da3be0364eb0473762a1cf9d Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) NOTES: @@ -34,376 +37,456 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/hercules/nandoam/FV3_RT/rt_543959 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3031060 UFS_TEST.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [10:14, 10:13](1 warnings,10 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [08:21, 07:40] (2129484 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [15:43, 15:42](1 warnings,10 remarks) -PASS -- TEST cpld_control_gfsv17_intel [14:09, 13:33] (2005816 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [15:05, 14:01] (2293032 MB) -PASS -- TEST cpld_restart_gfsv17_intel [07:00, 06:31] (1328388 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [15:42, 14:57] (1914440 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [17:07, 17:07](1 warnings,10 remarks) -PASS -- TEST cpld_control_sfs_intel [13:19, 13:04] (1998772 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [04:12, 04:11](1525 warnings,2000 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [21:53, 21:05] (1975984 MB) - -PASS -- COMPILE s2swa_intel [11:05, 11:04],10 remarks) -PASS -- TEST cpld_control_p8_intel [08:37, 07:52] (2191088 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [08:25, 07:42] (2186660 MB) -PASS -- TEST cpld_restart_p8_intel [05:05, 04:25] (1991300 MB) -PASS -- TEST cpld_control_qr_p8_intel [08:28, 07:42] (2220256 MB) -PASS -- TEST cpld_restart_qr_p8_intel [05:15, 04:25] (1742124 MB) -PASS -- TEST cpld_2threads_p8_intel [09:28, 08:59] (2544432 MB) -PASS -- TEST cpld_decomp_p8_intel [08:13, 07:36] (2175668 MB) -PASS -- TEST cpld_mpi_p8_intel [07:02, 06:23] (2098072 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [08:19, 07:37] (2189656 MB) -PASS -- TEST cpld_control_c192_p8_intel [16:51, 15:43] (2970344 MB) -PASS -- TEST cpld_restart_c192_p8_intel [07:24, 05:47] (2929308 MB) -PASS -- TEST cpld_bmark_p8_intel [12:59, 08:57] (3813308 MB) -PASS -- TEST cpld_restart_bmark_p8_intel [11:32, 05:32] (3641116 MB) -PASS -- TEST cpld_s2sa_p8_intel [05:31, 05:02] (2159060 MB) - -PASS -- COMPILE s2sw_intel [10:22, 10:22],10 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [07:52, 07:19] (2019944 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [04:55, 04:24] (2090540 MB) - -PASS -- COMPILE s2swa_debug_intel [05:33, 05:32](1450 warnings,1230 remarks) -PASS -- TEST cpld_debug_p8_intel [09:09, 08:25] (2211636 MB) - -PASS -- COMPILE s2sw_debug_intel [05:08, 05:08](1450 warnings,1230 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [05:48, 05:14] (2054848 MB) - -PASS -- COMPILE s2s_aoflux_intel [09:18, 09:18],3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:39, 04:59] (2076360 MB) - -PASS -- COMPILE s2s_intel [08:47, 08:47],3 remarks) -PASS -- TEST cpld_control_c48_intel [10:27, 10:01] (3112160 MB) -PASS -- TEST cpld_warmstart_c48_intel [02:56, 02:31] (3083164 MB) -PASS -- TEST cpld_restart_c48_intel [01:41, 01:27] (2547716 MB) - -PASS -- COMPILE s2swa_faster_intel [15:23, 15:23],10 remarks) -PASS -- TEST cpld_control_p8_faster_intel [08:57, 08:11] (2183292 MB) - -PASS -- COMPILE s2sw_pdlib_intel [18:10, 18:10],10 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [14:16, 13:42] (2036988 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [07:18, 06:44] (1389792 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [15:54, 15:14] (1967980 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [05:25, 05:25](1560 warnings,2000 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [23:00, 22:22] (2023460 MB) - -PASS -- COMPILE atm_dyn32_intel [09:30, 09:30](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [03:46, 03:34] (714964 MB) -PASS -- TEST control_CubedSphereGrid_intel [03:04, 02:39] (1610580 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [03:04, 02:34] (1617392 MB) -PASS -- TEST control_latlon_intel [02:42, 02:25] (1604492 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [02:53, 02:30] (1613924 MB) -PASS -- TEST control_c48_intel [07:12, 06:53] (1745244 MB) -PASS -- TEST control_c48.v2.sfc_intel [06:08, 05:56] (861908 MB) -PASS -- TEST control_c192_intel [09:34, 09:08] (1755128 MB) -PASS -- TEST control_c384_intel [10:31, 09:30] (2053240 MB) -PASS -- TEST control_c384gdas_intel [11:00, 09:39] (1529356 MB) -PASS -- TEST control_stochy_intel [01:52, 01:44] (662764 MB) -PASS -- TEST control_stochy_restart_intel [01:17, 01:03] (543352 MB) -PASS -- TEST control_lndp_intel [01:45, 01:35] (690228 MB) -PASS -- TEST control_iovr4_intel [02:45, 02:37] (670316 MB) -PASS -- TEST control_iovr5_intel [02:45, 02:38] (663084 MB) -PASS -- TEST control_p8_intel [03:12, 02:38] (1909624 MB) -PASS -- TEST control_p8.v2.sfc_intel [03:14, 02:38] (1911236 MB) -PASS -- TEST control_p8_ugwpv1_intel [03:11, 02:34] (1898624 MB) -PASS -- TEST control_restart_p8_intel [02:01, 01:34] (1171084 MB) -PASS -- TEST control_noqr_p8_intel [03:01, 02:34] (1908472 MB) -PASS -- TEST control_restart_noqr_p8_intel [01:54, 01:31] (1216572 MB) -PASS -- TEST control_decomp_p8_intel [03:10, 02:40] (1888532 MB) -PASS -- TEST control_2threads_p8_intel [02:58, 02:28] (1986460 MB) -PASS -- TEST control_p8_lndp_intel [04:50, 04:33] (1909972 MB) -PASS -- TEST control_p8_rrtmgp_intel [04:11, 03:36] (1976124 MB) -PASS -- TEST control_p8_mynn_intel [03:13, 02:41] (1917140 MB) -PASS -- TEST merra2_thompson_intel [03:36, 02:56] (1919508 MB) -PASS -- TEST regional_control_intel [05:00, 04:41] (1201416 MB) -PASS -- TEST regional_restart_intel [02:49, 02:36] (1174616 MB) -PASS -- TEST regional_decomp_intel [05:17, 04:57] (1196052 MB) -PASS -- TEST regional_2threads_intel [03:16, 03:02] (1158360 MB) -PASS -- TEST regional_noquilt_intel [04:46, 04:31] (1527012 MB) -PASS -- TEST regional_netcdf_parallel_intel [05:13, 04:47] (1207656 MB) -PASS -- TEST regional_2dwrtdecomp_intel [05:00, 04:39] (1198288 MB) -PASS -- TEST regional_wofs_intel [07:37, 07:17] (2088288 MB) - -PASS -- COMPILE rrfs_intel [07:26, 07:26](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [07:12, 06:39] (1213496 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:00, 03:28] (1408956 MB) -PASS -- TEST rap_decomp_intel [07:28, 06:56] (1153196 MB) -PASS -- TEST rap_2threads_intel [06:48, 06:10] (1369584 MB) -PASS -- TEST rap_restart_intel [03:56, 03:28] (1160520 MB) -PASS -- TEST rap_sfcdiff_intel [07:12, 06:39] (1228628 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [07:28, 06:57] (1167808 MB) -PASS -- TEST rap_sfcdiff_restart_intel [05:30, 05:02] (1219400 MB) -PASS -- TEST hrrr_control_intel [03:59, 03:26] (1102540 MB) -PASS -- TEST hrrr_control_decomp_intel [04:10, 03:35] (1056660 MB) -PASS -- TEST hrrr_control_2threads_intel [08:53, 08:15] (1124332 MB) -PASS -- TEST hrrr_control_restart_intel [02:13, 01:58] (1042628 MB) -PASS -- TEST rrfs_v1beta_intel [07:02, 06:27] (1204596 MB) -PASS -- TEST rrfs_v1nssl_intel [07:46, 07:37] (2004728 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [07:38, 07:26] (2178328 MB) - -PASS -- COMPILE csawmg_intel [07:01, 07:01] -PASS -- TEST control_csawmg_intel [06:32, 06:14] (1059284 MB) -PASS -- TEST control_ras_intel [03:04, 02:55] (860612 MB) - -PASS -- COMPILE csawmg_gnu [03:50, 03:50] -PASS -- TEST control_csawmg_gnu [07:20, 06:58] (1071576 MB) - -PASS -- COMPILE wam_intel [07:30, 07:30],1 remarks) -PASS -- TEST control_wam_intel [10:49, 10:06] (1681804 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [14:01, 14:01],1 remarks) -PASS -- TEST control_p8_faster_intel [02:59, 02:24] (1906392 MB) -PASS -- TEST regional_control_faster_intel [05:26, 05:09] (1192036 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [05:20, 05:19](884 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [02:46, 02:20] (1644528 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:40, 02:15] (1638648 MB) -PASS -- TEST control_stochy_debug_intel [02:49, 02:36] (843852 MB) -PASS -- TEST control_lndp_debug_intel [02:26, 02:18] (842612 MB) -PASS -- TEST control_csawmg_debug_intel [03:48, 03:36] (1164396 MB) -PASS -- TEST control_ras_debug_intel [02:26, 02:19] (851764 MB) -PASS -- TEST control_diag_debug_intel [02:42, 02:20] (1701584 MB) -PASS -- TEST control_debug_p8_intel [02:55, 02:37] (1938140 MB) -PASS -- TEST regional_debug_intel [16:40, 16:25] (1161000 MB) -PASS -- TEST rap_control_debug_intel [04:05, 03:59] (1238112 MB) -PASS -- TEST hrrr_control_debug_intel [04:24, 04:15] (1231056 MB) -PASS -- TEST hrrr_gf_debug_intel [04:12, 04:05] (1238764 MB) -PASS -- TEST hrrr_c3_debug_intel [04:13, 04:07] (1244492 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [04:20, 04:13] (1233992 MB) -PASS -- TEST rap_diag_debug_intel [04:28, 04:16] (1311912 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [04:24, 04:18] (1241964 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [04:37, 04:23] (1237336 MB) -PASS -- TEST rap_lndp_debug_intel [04:22, 04:07] (1232572 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [04:21, 04:10] (1237704 MB) -PASS -- TEST rap_noah_debug_intel [04:07, 04:00] (1234280 MB) -PASS -- TEST rap_sfcdiff_debug_intel [04:17, 04:09] (1236752 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:10, 07:00] (1230752 MB) -PASS -- TEST rrfs_v1beta_debug_intel [04:16, 04:05] (1239552 MB) -PASS -- TEST rap_clm_lake_debug_intel [05:25, 05:13] (1230492 MB) -PASS -- TEST rap_flake_debug_intel [04:10, 04:02] (1230676 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [07:52, 07:16] (1239252 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [05:43, 05:43] -PASS -- TEST control_csawmg_debug_gnu [02:08, 01:54] (1062516 MB) - -PASS -- COMPILE wam_debug_intel [03:33, 03:33](839 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [07:17, 07:17](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:06, 03:33] (1268824 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:41, 07:06] (1179780 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [04:21, 03:34] (1053716 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [06:31, 06:00] (1297048 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [03:49, 03:04] (1049296 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:33, 03:51] (1007912 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [05:53, 05:17] (1135840 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:11, 01:53] (959756 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [11:47, 11:46](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [02:08, 01:44] (1320540 MB) -PASS -- TEST conus13km_2threads_intel [01:04, 00:45] (1211848 MB) -PASS -- TEST conus13km_restart_mismatch_intel [01:23, 01:03] (1156444 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [07:41, 07:41](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [04:00, 03:43] (1070280 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:35, 03:35](787 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:17, 04:09] (1120284 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:03, 03:54] (1109828 MB) -PASS -- TEST conus13km_debug_intel [13:12, 12:45] (1362828 MB) -PASS -- TEST conus13km_debug_qr_intel [13:34, 13:11] (1012732 MB) -PASS -- TEST conus13km_debug_2threads_intel [08:39, 08:24] (1259788 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [12:56, 12:37] (1433524 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [03:29, 03:29](787 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [04:21, 04:14] (1158140 MB) - -PASS -- COMPILE hafsw_intel [10:40, 10:40](1 warnings,9 remarks) -PASS -- TEST hafs_regional_atm_intel [06:05, 05:15] (871548 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:04, 04:51] (1266756 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [07:26, 06:24] (947688 MB) -PASS -- TEST hafs_regional_atm_wav_intel [14:45, 13:54] (989996 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:06, 15:02] (1015140 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [05:57, 05:24] (611612 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [07:54, 06:55] (627516 MB) -PASS -- TEST hafs_global_1nest_atm_intel [02:59, 02:34] (442256 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [08:56, 07:33] (554560 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:20, 03:51] (626152 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:07, 03:35] (617620 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:26, 04:46] (685628 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:25, 01:09] (455740 MB) - -PASS -- COMPILE hafsw_debug_intel [03:38, 03:38](1467 warnings,1502 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [14:05, 13:37] (687668 MB) - -PASS -- COMPILE hafsw_faster_intel [15:37, 15:36],8 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:45, 16:06] (765496 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:41, 15:57] (851620 MB) - -PASS -- COMPILE hafs_mom6w_intel [11:18, 11:17],7 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:51, 10:08] (823680 MB) - -PASS -- COMPILE hafs_all_intel [09:56, 09:56],8 remarks) -PASS -- TEST hafs_regional_docn_intel [06:16, 05:24] (935040 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [06:24, 05:34] (940492 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [16:58, 16:25] (1343520 MB) - -PASS -- COMPILE datm_cdeps_intel [05:17, 05:17],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [02:14, 02:09] (1153520 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [01:24, 01:18] (1096412 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:02, 02:57] (1017844 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [02:11, 02:07] (1021472 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [02:12, 02:06] (1021720 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:10, 03:04] (1121116 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:11, 02:07] (1160100 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [02:06, 02:02] (1021784 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:27, 04:56] (1174944 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [05:22, 04:50] (1162748 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [02:12, 02:08] (1123180 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:13, 04:06] (2360116 MB) -PASS -- TEST datm_cdeps_gfs_intel [04:08, 04:01] (2429888 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [03:07, 03:07](2 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [05:10, 05:05] (1063444 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [05:19, 05:19],2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:15, 02:07] (1171280 MB) - -PASS -- COMPILE datm_cdeps_land_intel [00:46, 00:46],1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:06, 00:50] (334496 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [01:03, 00:49] (572520 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:41, 00:31] (571540 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [07:43, 07:43],3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [04:17, 03:38] (2015268 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [08:55, 08:54],1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [04:52, 04:12] (1988396 MB) - -PASS -- COMPILE atml_intel [09:41, 09:41](8 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_sbs_intel [07:57, 07:07] (1903416 MB) -PASS -- TEST control_p8_atmlnd_intel [07:32, 06:42] (1902872 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:50, 03:19] (1146648 MB) - -PASS -- COMPILE atml_debug_intel [04:18, 04:17](882 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [06:27, 05:42] (1936600 MB) - -PASS -- COMPILE atmw_intel [09:38, 09:38],8 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [02:36, 01:54] (1954912 MB) - -PASS -- COMPILE atmaero_intel [07:34, 07:33],1 remarks) -PASS -- TEST atmaero_control_p8_intel [05:22, 04:47] (2030936 MB) -PASS -- TEST atmaero_control_p8_rad_intel [05:07, 04:29] (1803268 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [05:00, 04:31] (1822764 MB) - -PASS -- COMPILE atmaq_debug_intel [03:09, 03:08](884 warnings,6 remarks) -PASS -- TEST regional_atmaq_debug_intel [17:49, 16:42] (4563588 MB) - -PASS -- COMPILE atm_gnu [04:18, 04:17] -PASS -- TEST control_c48_gnu [09:41, 09:16] (1555776 MB) -PASS -- TEST control_stochy_gnu [02:50, 02:39] (731092 MB) -PASS -- TEST control_ras_gnu [03:57, 03:46] (737984 MB) -PASS -- TEST control_p8_gnu [04:34, 03:53] (1729072 MB) -PASS -- TEST control_p8_ugwpv1_gnu [04:26, 03:52] (1757840 MB) -PASS -- TEST control_flake_gnu [04:44, 04:32] (820784 MB) - -PASS -- COMPILE rrfs_gnu [04:09, 04:09] -PASS -- TEST rap_control_gnu [08:20, 07:46] (1089052 MB) -PASS -- TEST rap_decomp_gnu [08:31, 07:57] (1093316 MB) -PASS -- TEST rap_2threads_gnu [07:44, 07:08] (1149416 MB) -PASS -- TEST rap_restart_gnu [04:40, 03:58] (885348 MB) -PASS -- TEST rap_sfcdiff_gnu [08:25, 07:48] (1083964 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [08:33, 07:56] (1083656 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [06:40, 05:55] (884976 MB) -PASS -- TEST hrrr_control_gnu [04:35, 03:59] (1076288 MB) -PASS -- TEST hrrr_control_noqr_gnu [04:31, 04:01] (1135484 MB) -PASS -- TEST hrrr_control_2threads_gnu [07:28, 06:49] (1047856 MB) -PASS -- TEST hrrr_control_decomp_gnu [04:38, 04:02] (1070560 MB) -PASS -- TEST hrrr_control_restart_gnu [02:27, 02:06] (883068 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [02:27, 02:06] (934272 MB) -PASS -- TEST rrfs_v1beta_gnu [08:47, 08:02] (1094156 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [07:50, 07:50] -PASS -- TEST control_diag_debug_gnu [01:48, 01:23] (1632584 MB) -PASS -- TEST regional_debug_gnu [07:07, 06:45] (1117388 MB) -PASS -- TEST rap_control_debug_gnu [02:15, 02:02] (1109016 MB) -PASS -- TEST hrrr_control_debug_gnu [02:15, 02:03] (1095784 MB) -PASS -- TEST hrrr_gf_debug_gnu [02:17, 02:04] (1104804 MB) -PASS -- TEST hrrr_c3_debug_gnu [02:17, 02:02] (1104648 MB) -PASS -- TEST rap_diag_debug_gnu [02:32, 02:11] (1277556 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:32, 03:23] (1102024 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [02:11, 01:58] (1110572 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [02:11, 02:02] (1100628 MB) -PASS -- TEST control_ras_debug_gnu [01:28, 01:18] (731496 MB) -PASS -- TEST control_stochy_debug_gnu [01:31, 01:20] (728128 MB) -PASS -- TEST control_debug_p8_gnu [01:54, 01:32] (1711472 MB) -PASS -- TEST rap_flake_debug_gnu [02:15, 02:05] (1107168 MB) -PASS -- TEST rap_clm_lake_debug_gnu [02:28, 02:20] (1108844 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [04:06, 03:29] (1109808 MB) - -PASS -- COMPILE wam_debug_gnu [02:35, 02:35] -PASS -- TEST control_wam_debug_gnu [05:52, 05:26] (1576324 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [03:57, 03:57] -PASS -- TEST rap_control_dyn32_phy32_gnu [08:00, 07:27] (965284 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:38, 03:57] (958072 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [07:13, 06:42] (975416 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [16:29, 15:45] (891176 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:37, 03:55] (952988 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [06:09, 05:42] (861924 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:23, 02:04] (857836 MB) -PASS -- TEST conus13km_control_gnu [02:56, 02:33] (1267340 MB) -PASS -- TEST conus13km_2threads_gnu [01:29, 01:10] (1179252 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [01:53, 01:29] (932556 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [10:33, 10:33] -PASS -- TEST rap_control_dyn64_phy32_gnu [04:57, 04:33] (990892 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:51, 07:50] -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:21, 02:09] (978076 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:23, 02:10] (972500 MB) -PASS -- TEST conus13km_debug_gnu [06:33, 06:06] (1295040 MB) -PASS -- TEST conus13km_debug_qr_gnu [06:33, 06:07] (962368 MB) -PASS -- TEST conus13km_debug_2threads_gnu [04:01, 03:39] (1200568 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [06:27, 06:03] (1356340 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [07:53, 07:53] -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:09, 02:02] (1007056 MB) - -PASS -- COMPILE s2swa_gnu [16:40, 16:39] -PASS -- COMPILE s2s_gnu [15:48, 15:48] -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [05:31, 04:51] (3081940 MB) - -PASS -- COMPILE s2swa_debug_gnu [03:23, 03:22] -PASS -- COMPILE s2sw_pdlib_gnu [15:58, 15:57] -PASS -- TEST cpld_control_pdlib_p8_gnu [26:28, 25:52] (3032616 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [03:24, 03:24] -PASS -- TEST cpld_debug_pdlib_p8_gnu [12:32, 11:56] (2907888 MB) - -PASS -- COMPILE datm_cdeps_gnu [14:30, 14:30] -PASS -- TEST datm_cdeps_control_cfsr_gnu [02:19, 02:14] (773052 MB) +PASS -- COMPILE s2swa_32bit_intel [12:07, 12:07](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [15:55, 15:02] (2121320 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [17:36, 17:36](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [15:09, 14:21] (1993720 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [15:08, 14:09] (2279928 MB) +PASS -- TEST cpld_restart_gfsv17_intel [07:52, 06:46] (1342232 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [17:06, 16:12] (1901796 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [16:41, 16:41](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [14:41, 14:05] (1980552 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [05:31, 05:31](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:35, 24:42] (1974300 MB) + +PASS -- COMPILE s2swa_intel [12:20, 12:20](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [16:19, 15:20] (2200652 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [15:40, 14:49] (2203192 MB) +PASS -- TEST cpld_restart_p8_intel [08:36, 07:37] (1965204 MB) +PASS -- TEST cpld_control_qr_p8_intel [15:44, 14:45] (2227252 MB) +PASS -- TEST cpld_restart_qr_p8_intel [08:56, 07:55] (1736324 MB) +PASS -- TEST cpld_2threads_p8_intel [17:58, 17:09] (2549816 MB) +PASS -- TEST cpld_decomp_p8_intel [15:32, 14:40] (2194140 MB) +PASS -- TEST cpld_mpi_p8_intel [14:50, 13:42] (2093952 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [14:55, 14:02] (2196184 MB) +PASS -- TEST cpld_control_c192_p8_intel [16:44, 15:17] (2974816 MB) +PASS -- TEST cpld_restart_c192_p8_intel [08:53, 06:47] (2898528 MB) +PASS -- TEST cpld_bmark_p8_intel [21:58, 16:43] (3830504 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [16:37, 09:41] (3650540 MB) +PASS -- TEST cpld_s2sa_p8_intel [07:45, 07:06] (2111084 MB) + +PASS -- COMPILE s2sw_intel [11:59, 11:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [14:00, 13:16] (2001968 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [12:11, 11:24] (2101160 MB) + +PASS -- COMPILE s2swa_debug_intel [06:29, 06:28](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [20:46, 19:28] (2224852 MB) + +PASS -- COMPILE s2sw_debug_intel [06:12, 06:11](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:17, 09:30] (2042708 MB) + +PASS -- COMPILE s2s_aoflux_intel [11:53, 11:53],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [04:49, 04:05] (2066800 MB) + +PASS -- COMPILE s2s_intel [10:17, 10:16](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [06:41, 06:06] (3032344 MB) +PASS -- TEST cpld_warmstart_c48_intel [02:32, 01:58] (3020720 MB) +PASS -- TEST cpld_restart_c48_intel [01:32, 01:08] (2474336 MB) + +PASS -- COMPILE s2swa_faster_intel [12:33, 12:33](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [14:30, 13:34] (2196124 MB) + +PASS -- COMPILE s2sw_pdlib_intel [19:05, 19:04](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [23:35, 22:47] (2075224 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [14:17, 13:10] (1411136 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [28:26, 27:15] (2014236 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [04:58, 04:58](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:39, 27:50] (2015580 MB) + +PASS -- COMPILE atm_dyn32_intel [09:36, 09:36](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [06:07, 06:00] (843192 MB) +PASS -- TEST baroclinic_wave_intel [05:36, 04:39] (1636164 MB) +PASS -- TEST control_flake_intel [03:06, 02:56] (717376 MB) +PASS -- TEST control_CubedSphereGrid_intel [03:05, 02:44] (1588836 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:19, 02:54] (1600296 MB) +PASS -- TEST control_latlon_intel [03:09, 02:48] (1582196 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [03:58, 03:23] (1604960 MB) +PASS -- TEST control_c48_intel [10:57, 10:29] (1713268 MB) +PASS -- TEST control_c48.v2.sfc_intel [06:12, 05:59] (839372 MB) +PASS -- TEST control_c192_intel [11:15, 10:37] (1783120 MB) +PASS -- TEST control_c384_intel [13:56, 12:33] (2021680 MB) +PASS -- TEST control_c384gdas_intel [09:36, 07:50] (1507608 MB) +PASS -- TEST control_stochy_intel [01:44, 01:33] (664612 MB) +PASS -- TEST control_stochy_restart_intel [01:12, 00:54] (529900 MB) +PASS -- TEST control_lndp_intel [02:07, 01:53] (669116 MB) +PASS -- TEST control_iovr4_intel [02:29, 02:15] (658356 MB) +PASS -- TEST control_iovr5_intel [02:32, 02:18] (665808 MB) +PASS -- TEST control_p8_intel [04:11, 03:27] (1886168 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:11, 03:16] (1899096 MB) +PASS -- TEST control_p8_ugwpv1_intel [04:06, 03:20] (1886672 MB) +PASS -- TEST control_restart_p8_intel [03:29, 02:46] (1140044 MB) +PASS -- TEST control_noqr_p8_intel [04:34, 03:49] (1873368 MB) +PASS -- TEST control_restart_noqr_p8_intel [02:51, 02:04] (1207920 MB) +PASS -- TEST control_decomp_p8_intel [04:01, 03:19] (1870144 MB) +PASS -- TEST control_2threads_p8_intel [03:50, 03:07] (1960612 MB) +PASS -- TEST control_p8_lndp_intel [07:07, 06:39] (1884048 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:06, 04:16] (1977040 MB) +PASS -- TEST control_p8_mynn_intel [04:25, 03:36] (1914724 MB) +PASS -- TEST merra2_thompson_intel [04:27, 03:32] (1893124 MB) +PASS -- TEST regional_control_intel [05:55, 05:37] (1187268 MB) +PASS -- TEST regional_restart_intel [03:48, 03:13] (1165108 MB) +PASS -- TEST regional_decomp_intel [05:26, 05:00] (1187288 MB) +PASS -- TEST regional_2threads_intel [03:34, 03:15] (1148128 MB) +PASS -- TEST regional_noquilt_intel [06:08, 05:45] (1518992 MB) +PASS -- TEST regional_netcdf_parallel_intel [05:56, 05:23] (1186260 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:38, 06:10] (1193988 MB) +PASS -- TEST regional_wofs_intel [07:12, 06:49] (2064644 MB) + +PASS -- COMPILE rrfs_intel [09:02, 09:02](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [07:22, 06:43] (1190088 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [04:25, 03:51] (1355024 MB) +PASS -- TEST rap_decomp_intel [07:50, 07:08] (1129020 MB) +PASS -- TEST rap_2threads_intel [07:29, 06:50] (1357192 MB) +PASS -- TEST rap_restart_intel [04:24, 03:36] (1131308 MB) +PASS -- TEST rap_sfcdiff_intel [07:35, 06:53] (1187860 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [07:43, 07:07] (1149060 MB) +PASS -- TEST rap_sfcdiff_restart_intel [06:03, 05:17] (1189924 MB) +PASS -- TEST hrrr_control_intel [04:25, 03:39] (1078336 MB) +PASS -- TEST hrrr_control_decomp_intel [06:16, 05:28] (1028960 MB) +PASS -- TEST hrrr_control_2threads_intel [08:12, 07:30] (1099628 MB) +PASS -- TEST hrrr_control_restart_intel [02:30, 02:06] (1008008 MB) +PASS -- TEST rrfs_v1beta_intel [07:31, 06:49] (1218400 MB) +PASS -- TEST rrfs_v1nssl_intel [10:04, 09:53] (2003572 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [10:35, 10:14] (2194008 MB) + +PASS -- COMPILE csawmg_intel [08:36, 08:35] +PASS -- TEST control_csawmg_intel [07:50, 07:17] (1041212 MB) +PASS -- TEST control_ras_intel [04:26, 04:16] (808368 MB) + +PASS -- COMPILE wam_intel [11:09, 11:08],1 remarks) +PASS -- TEST control_wam_intel [10:32, 10:00] (1655424 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [09:20, 09:20],1 remarks) +PASS -- TEST control_p8_faster_intel [04:11, 03:22] (1886116 MB) +PASS -- TEST regional_control_faster_intel [04:44, 04:24] (1177052 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [06:57, 06:57](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [02:53, 02:14] (1626976 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:55, 02:13] (1622924 MB) +PASS -- TEST control_stochy_debug_intel [02:52, 02:41] (837104 MB) +PASS -- TEST control_lndp_debug_intel [02:39, 02:27] (842060 MB) +PASS -- TEST control_csawmg_debug_intel [04:43, 04:25] (1147044 MB) +PASS -- TEST control_ras_debug_intel [02:30, 02:22] (851412 MB) +PASS -- TEST control_diag_debug_intel [03:30, 02:58] (1697532 MB) +PASS -- TEST control_debug_p8_intel [03:55, 03:15] (1915232 MB) +PASS -- TEST regional_debug_intel [16:13, 15:44] (1147312 MB) +PASS -- TEST rap_control_debug_intel [04:27, 04:19] (1219508 MB) +PASS -- TEST hrrr_control_debug_intel [04:25, 04:11] (1230572 MB) +PASS -- TEST hrrr_gf_debug_intel [04:21, 04:08] (1227508 MB) +PASS -- TEST hrrr_c3_debug_intel [04:31, 04:20] (1221360 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [04:40, 04:31] (1211324 MB) +PASS -- TEST rap_diag_debug_intel [04:54, 04:36] (1316512 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [04:25, 04:14] (1221064 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [04:27, 04:14] (1228344 MB) +PASS -- TEST rap_lndp_debug_intel [04:22, 04:12] (1230004 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [04:21, 04:12] (1218816 MB) +PASS -- TEST rap_noah_debug_intel [04:25, 04:14] (1223324 MB) +PASS -- TEST rap_sfcdiff_debug_intel [04:27, 04:16] (1227852 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [07:03, 06:52] (1223592 MB) +PASS -- TEST rrfs_v1beta_debug_intel [04:35, 04:24] (1207808 MB) +PASS -- TEST rap_clm_lake_debug_intel [05:18, 05:06] (1222388 MB) +PASS -- TEST rap_flake_debug_intel [04:36, 04:26] (1225796 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [07:53, 07:13] (1232908 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [04:51, 04:51] +PASS -- TEST control_csawmg_debug_gnu [03:22, 02:58] (1038340 MB) + +PASS -- COMPILE wam_debug_intel [03:56, 03:54](837 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [08:28, 08:27](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [04:11, 03:34] (1230524 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [06:14, 05:30] (1140256 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [03:48, 02:55] (1010384 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [05:58, 05:21] (1285588 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:29, 03:31] (1031684 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [03:57, 03:10] (999640 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [04:56, 04:16] (1096464 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:02, 01:43] (951524 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:01, 09:00](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [02:17, 01:47] (1283856 MB) +PASS -- TEST conus13km_2threads_intel [01:37, 01:07] (1186908 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:36, 01:08] (1143128 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [08:36, 08:36](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [04:57, 04:34] (1085536 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [03:38, 03:38](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [04:33, 04:24] (1103936 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [04:33, 04:24] (1095476 MB) +PASS -- TEST conus13km_debug_intel [12:32, 11:58] (1337168 MB) +PASS -- TEST conus13km_debug_qr_intel [13:24, 12:54] (1006060 MB) +PASS -- TEST conus13km_debug_2threads_intel [07:51, 07:24] (1240008 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [12:23, 11:57] (1415152 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [04:13, 04:12](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:00, 04:46] (1163384 MB) + +PASS -- COMPILE hafsw_intel [11:07, 11:07](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [06:58, 05:47] (851316 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:55, 05:38] (1249172 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [07:36, 06:32] (937224 MB) +PASS -- TEST hafs_regional_atm_wav_intel [15:02, 14:04] (972068 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [16:42, 15:31] (965564 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [06:14, 05:35] (595528 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:10, 07:03] (605764 MB) +PASS -- TEST hafs_global_1nest_atm_intel [03:13, 02:43] (433112 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [11:12, 09:27] (543568 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [04:32, 03:59] (603908 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [04:20, 03:42] (603768 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:45, 05:01] (657216 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [01:29, 01:11] (454096 MB) + +PASS -- COMPILE hafsw_debug_intel [05:16, 05:15](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:47, 12:02] (637488 MB) + +PASS -- COMPILE hafsw_faster_intel [10:29, 10:29],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [16:45, 15:56] (707580 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [16:25, 15:42] (841776 MB) + +PASS -- COMPILE hafs_mom6w_intel [10:47, 10:46],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [11:19, 09:56] (809884 MB) + +PASS -- COMPILE hafs_all_intel [10:09, 10:08],8 remarks) +PASS -- TEST hafs_regional_docn_intel [06:47, 05:51] (930464 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [07:42, 06:44] (896824 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:12, 16:37] (1341972 MB) + +PASS -- COMPILE datm_cdeps_intel [05:55, 05:54],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:03, 02:58] (1123672 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [01:53, 01:47] (1095976 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:13, 03:07] (1008380 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [02:15, 02:09] (1016516 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [02:57, 02:50] (1017932 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:17, 02:13] (1165048 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:46, 02:41] (1145800 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:06, 03:01] (1018328 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [05:40, 04:59] (1154656 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [05:43, 05:00] (1163156 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:34, 03:30] (1161572 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:03, 03:57] (2341584 MB) +PASS -- TEST datm_cdeps_gfs_intel [03:57, 03:52] (2332872 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:58, 03:57](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [09:45, 09:39] (1069316 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [06:09, 06:08],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [02:21, 02:16] (1143344 MB) + +PASS -- COMPILE datm_cdeps_land_intel [00:45, 00:44],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:24, 01:00] (328588 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:11, 00:57] (572416 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [00:51, 00:35] (574064 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:19, 10:19],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [04:52, 04:12] (2029852 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [08:47, 08:47](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:31, 08:54] (2028276 MB) + +PASS -- COMPILE atml_intel [09:13, 09:12](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:55, 05:58] (1891992 MB) +PASS -- TEST control_p8_atmlnd_intel [07:48, 06:54] (1894880 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:40, 03:16] (1141312 MB) + +PASS -- COMPILE atml_debug_intel [04:46, 04:45](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [06:32, 05:34] (1925180 MB) + +PASS -- COMPILE atmw_intel [09:42, 09:42],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:52, 02:10] (1934736 MB) + +PASS -- COMPILE atmaero_intel [08:59, 08:59],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:46, 05:04] (2002744 MB) +PASS -- TEST atmaero_control_p8_rad_intel [05:47, 05:06] (1780620 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:54, 06:24] (1791616 MB) + +PASS -- COMPILE atmaq_debug_intel [03:56, 03:56](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [18:28, 17:14] (4528948 MB) + +PASS -- COMPILE atm_fbh_intel [08:09, 08:08](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [10:54, 10:41] (1077832 MB) + +PASS -- COMPILE datm_cdeps_intelllvm [10:54, 10:54] +PASS -- TEST datm_cdeps_control_cfsr_intelllvm [03:35, 03:32] (1120268 MB) + +PASS -- COMPILE datm_cdeps_debug_intelllvm [02:16, 02:16](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intelllvm [06:08, 06:04] (1071564 MB) + +PASS -- COMPILE atm_gnu [04:41, 04:41] +PASS -- TEST 2020_CAPE_gnu [10:45, 10:35] (836236 MB) +PASS -- TEST baroclinic_wave_gnu [10:26, 09:32] (1279948 MB) +PASS -- TEST control_c48_gnu [08:56, 08:18] (1515420 MB) +PASS -- TEST control_stochy_gnu [02:42, 02:31] (719316 MB) +PASS -- TEST control_ras_gnu [04:00, 03:49] (721756 MB) +PASS -- TEST control_p8_gnu [04:57, 04:14] (1721144 MB) +PASS -- TEST control_p8_ugwpv1_gnu [04:50, 04:13] (1699752 MB) +PASS -- TEST control_flake_gnu [04:51, 04:42] (807268 MB) + +PASS -- COMPILE rrfs_gnu [04:40, 04:40] +PASS -- TEST rap_control_gnu [11:21, 10:46] (1072760 MB) +PASS -- TEST rap_decomp_gnu [11:37, 10:56] (1069520 MB) +PASS -- TEST rap_2threads_gnu [10:39, 10:06] (1129848 MB) +PASS -- TEST rap_restart_gnu [08:03, 07:14] (878384 MB) +PASS -- TEST rap_sfcdiff_gnu [11:16, 10:42] (1071408 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [15:05, 14:29] (1082948 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [08:49, 08:05] (878080 MB) +PASS -- TEST hrrr_control_gnu [06:25, 05:45] (1061232 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:07, 05:34] (1125876 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:20] (1059288 MB) +PASS -- TEST hrrr_control_restart_gnu [03:29, 03:13] (879228 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [03:25, 03:07] (924644 MB) +PASS -- TEST rrfs_v1beta_gnu [14:01, 13:21] (1070656 MB) + +PASS -- COMPILE csawmg_gnu [04:06, 04:06] +PASS -- TEST control_csawmg_gnu [11:25, 10:58] (1077980 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [06:02, 06:02] +PASS -- TEST control_diag_debug_gnu [01:53, 01:27] (1615656 MB) +PASS -- TEST regional_debug_gnu [07:33, 07:12] (1122436 MB) +PASS -- TEST rap_control_debug_gnu [02:14, 02:07] (1089884 MB) +PASS -- TEST hrrr_control_debug_gnu [02:10, 01:59] (1080440 MB) +PASS -- TEST hrrr_gf_debug_gnu [02:15, 02:05] (1090184 MB) +PASS -- TEST hrrr_c3_debug_gnu [02:07, 01:59] (1085224 MB) +PASS -- TEST rap_diag_debug_gnu [02:26, 02:12] (1258572 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [03:19, 03:10] (1086864 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [02:57, 02:48] (1086936 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [02:11, 02:03] (1084532 MB) +PASS -- TEST control_ras_debug_gnu [01:27, 01:20] (718640 MB) +PASS -- TEST control_stochy_debug_gnu [01:30, 01:22] (718132 MB) +PASS -- TEST control_debug_p8_gnu [01:57, 01:34] (1695716 MB) +PASS -- TEST rap_flake_debug_gnu [02:16, 02:07] (1087700 MB) +PASS -- TEST rap_clm_lake_debug_gnu [03:06, 02:58] (1094276 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [03:56, 03:21] (1097536 MB) + +PASS -- COMPILE wam_debug_gnu [03:02, 03:01] +PASS -- TEST control_wam_debug_gnu [05:42, 05:17] (1557828 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [04:21, 04:21] +PASS -- TEST rap_control_dyn32_phy32_gnu [08:49, 08:16] (955720 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [04:49, 04:04] (940400 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [09:25, 08:51] (960200 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:12, 04:28] (889096 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [04:50, 04:05] (940308 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [06:55, 06:13] (853548 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [02:24, 02:13] (853700 MB) +PASS -- TEST conus13km_control_gnu [03:11, 02:37] (1254360 MB) +PASS -- TEST conus13km_2threads_gnu [01:43, 01:11] (1162252 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [02:45, 02:01] (920816 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [08:44, 08:44] +PASS -- TEST rap_control_dyn64_phy32_gnu [05:06, 04:41] (986472 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [08:23, 08:23] +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [02:15, 02:05] (969872 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [02:45, 02:36] (960824 MB) +PASS -- TEST conus13km_debug_gnu [06:14, 05:46] (1273656 MB) +PASS -- TEST conus13km_debug_qr_gnu [06:53, 06:21] (948148 MB) +PASS -- TEST conus13km_debug_2threads_gnu [04:15, 03:54] (1179028 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [06:26, 05:53] (1340448 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [08:00, 08:00] +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [02:30, 02:19] (993788 MB) + +PASS -- COMPILE s2swa_gnu [16:23, 16:23] +PASS -- COMPILE s2s_gnu [15:43, 15:42] +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [15:21, 14:28] (3066252 MB) + +PASS -- COMPILE s2swa_debug_gnu [03:42, 03:42] +PASS -- COMPILE s2sw_pdlib_gnu [15:04, 15:04] +PASS -- TEST cpld_control_pdlib_p8_gnu [41:27, 40:51] (2864608 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [03:42, 03:42] +PASS -- TEST cpld_debug_pdlib_p8_gnu [15:34, 14:47] (2906548 MB) + +PASS -- COMPILE datm_cdeps_gnu [15:02, 15:02] +PASS -- TEST datm_cdeps_control_cfsr_gnu [03:58, 03:53] (754516 MB) SYNOPSIS: -Starting Date/Time: 20240801 11:12:36 -Ending Date/Time: 20240801 15:37:09 -Total Time: 04h:24m:33s -Compiles Completed: 57/57 -Tests Completed: 244/244 +Starting Date/Time: 2024-11-10 18:39:10 +Ending Date/Time: 2024-11-10 23:49:36 +Total Time: 05h:10m:26s +Compiles Completed: 60/60 +Tests Completed: 250/251 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF hercules REGRESSION TESTING LOG==== +====START OF hercules REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +e366ec57380a76f1da3be0364eb0473762a1cf9d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_3309029 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE rrfs_gnu [04:53, 04:52] +PASS -- TEST hrrr_control_gnu [06:14, 05:33] (1061804 MB) +PASS -- TEST hrrr_control_2threads_gnu [05:21, 04:59] (1014824 MB) +PASS -- TEST hrrr_control_decomp_gnu [06:01, 05:20] (1061408 MB) +PASS -- TEST hrrr_control_restart_gnu [03:20, 03:01] (879384 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-10 18:39:10 +Ending Date/Time: 2024-11-11 09:47:25 +Total Time: 15h:08m:15s +Compiles Completed: 1/1 +Tests Completed: 4/4 NOTES: diff --git a/tests-dev/logs/RegressionTests_jet.log b/tests-dev/logs/RegressionTests_jet.log new file mode 100644 index 0000000000..08a57bffca --- /dev/null +++ b/tests-dev/logs/RegressionTests_jet.log @@ -0,0 +1,303 @@ +====START OF jet REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ee291dddb429760ba057303024e7936126227735 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lfs5/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_3641822 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [43:45, 43:45](1 warnings,1380 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [14:09, 13:16] (1990480 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [49:58, 49:58](1 warnings,1427 remarks) +PASS -- TEST cpld_control_gfsv17_intel [21:32, 20:42] (1888972 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [23:22, 22:26] (2018384 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:46, 09:58] (1139772 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [24:42, 23:53] (1853124 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [53:52, 53:52](1 warnings,1424 remarks) +PASS -- TEST cpld_control_sfs_intel [20:57, 20:17] (1863476 MB) + +PASS -- COMPILE s2swa_intel [44:16, 44:16](1 warnings,1399 remarks) +PASS -- TEST cpld_control_p8_intel [17:45, 16:44] (2041940 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [17:46, 16:44] (2022176 MB) +PASS -- TEST cpld_restart_p8_intel [09:56, 08:55] (1710032 MB) +PASS -- TEST cpld_control_qr_p8_intel [17:43, 16:45] (2053628 MB) +PASS -- TEST cpld_restart_qr_p8_intel [10:01, 08:59] (1736672 MB) +PASS -- TEST cpld_2threads_p8_intel [16:45, 15:50] (2327892 MB) +PASS -- TEST cpld_decomp_p8_intel [17:45, 16:50] (2059284 MB) +PASS -- TEST cpld_mpi_p8_intel [14:45, 13:44] (1995464 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [17:45, 16:38] (2035760 MB) +PASS -- TEST cpld_s2sa_p8_intel [10:09, 09:14] (1993348 MB) + +PASS -- COMPILE s2sw_intel [41:33, 41:33](1 warnings,1284 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [10:05, 09:15] (1900756 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [15:06, 14:13] (1967656 MB) + +PASS -- COMPILE s2swa_debug_intel [06:06, 06:06](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_p8_intel [28:45, 27:39] (2042128 MB) + +PASS -- COMPILE s2sw_debug_intel [05:58, 05:57](1413 warnings,1228 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [12:13, 11:22] (1925480 MB) + +PASS -- COMPILE s2s_aoflux_intel [37:25, 37:25],1010 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [06:40, 05:35] (1939360 MB) + +PASS -- COMPILE s2s_intel [38:03, 38:03](1 warnings,1033 remarks) +PASS -- TEST cpld_control_c48_intel [10:49, 10:16] (3011596 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:31, 02:58] (3001508 MB) +PASS -- TEST cpld_restart_c48_intel [02:10, 01:41] (2449704 MB) + +PASS -- COMPILE s2swa_faster_intel [92:58, 92:58](1 warnings,1615 remarks) +PASS -- TEST cpld_control_p8_faster_intel [16:55, 16:00] (2017696 MB) + +PASS -- COMPILE s2sw_pdlib_intel [48:14, 48:14](1 warnings,1344 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [34:31, 33:45] (1932584 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [17:44, 16:49] (1138508 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [40:17, 39:29] (1881392 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [05:57, 05:56](1523 warnings,1998 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [39:25, 38:52] (1911980 MB) + +PASS -- COMPILE atm_dyn32_intel [37:20, 37:20](1 warnings,1116 remarks) +PASS -- TEST 2020_CAPE_intel [10:22, 10:12] (833524 MB) +PASS -- TEST baroclinic_wave_intel [07:32, 06:19] (1339204 MB) +PASS -- TEST control_flake_intel [04:36, 04:21] (646900 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:44, 04:12] (1535184 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [05:04, 04:33] (1542756 MB) +PASS -- TEST control_latlon_intel [04:39, 04:15] (1509984 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:53, 04:19] (1543020 MB) +PASS -- TEST control_c48_intel [18:34, 18:04] (1701392 MB) +PASS -- TEST control_c48.v2.sfc_intel [10:26, 10:10] (830460 MB) +PASS -- TEST control_c192_intel [16:36, 16:00] (1679576 MB) +PASS -- TEST control_c384_intel [24:28, 23:02] (1783312 MB) +PASS -- TEST control_c384gdas_intel [15:23, 13:15] (990120 MB) +PASS -- TEST control_stochy_intel [02:20, 02:06] (602592 MB) +PASS -- TEST control_stochy_restart_intel [01:26, 01:15] (429200 MB) +PASS -- TEST control_lndp_intel [02:14, 01:59] (607496 MB) +PASS -- TEST control_iovr4_intel [03:25, 03:12] (600160 MB) +PASS -- TEST control_iovr5_intel [03:28, 03:15] (596736 MB) +PASS -- TEST control_p8_intel [05:29, 04:47] (1820236 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:38, 03:56] (1830204 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:13, 04:38] (1788456 MB) +PASS -- TEST control_restart_p8_intel [03:07, 02:38] (1056824 MB) +PASS -- TEST control_noqr_p8_intel [05:12, 04:37] (1806504 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:05, 02:33] (1068320 MB) +PASS -- TEST control_decomp_p8_intel [05:21, 04:47] (1813536 MB) +PASS -- TEST control_2threads_p8_intel [05:03, 04:30] (1910184 MB) +PASS -- TEST control_p8_lndp_intel [09:06, 08:35] (1816624 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:49, 05:13] (1873836 MB) +PASS -- TEST control_p8_mynn_intel [04:38, 03:59] (1844180 MB) +PASS -- TEST merra2_thompson_intel [04:55, 04:20] (1843332 MB) +PASS -- TEST regional_control_intel [07:36, 07:13] (1001184 MB) +PASS -- TEST regional_restart_intel [04:07, 03:43] (1006740 MB) +PASS -- TEST regional_decomp_intel [07:49, 07:27] (1000896 MB) +PASS -- TEST regional_2threads_intel [04:44, 04:21] (979708 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:35, 07:07] (1006392 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:27, 07:02] (1000040 MB) + +PASS -- COMPILE rrfs_intel [34:54, 34:54](3 warnings,1092 remarks) +PASS -- TEST rap_control_intel [10:25, 09:59] (980228 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:20, 05:30] (1178756 MB) +PASS -- TEST rap_decomp_intel [11:08, 10:41] (980740 MB) +PASS -- TEST rap_2threads_intel [10:06, 09:34] (1081032 MB) +PASS -- TEST rap_restart_intel [05:38, 05:11] (977360 MB) +PASS -- TEST rap_sfcdiff_intel [10:25, 09:59] (986684 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [11:11, 10:44] (981604 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:59, 07:31] (993144 MB) +PASS -- TEST hrrr_control_intel [05:34, 05:06] (981944 MB) +PASS -- TEST hrrr_control_decomp_intel [05:40, 05:16] (980316 MB) +PASS -- TEST hrrr_control_2threads_intel [05:07, 04:42] (1047344 MB) +PASS -- TEST hrrr_control_restart_intel [02:58, 02:45] (914384 MB) +PASS -- TEST rrfs_v1beta_intel [10:35, 10:01] (984868 MB) +PASS -- TEST rrfs_v1nssl_intel [13:29, 13:14] (1929308 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [13:06, 12:52] (1931152 MB) + +PASS -- COMPILE csawmg_intel [35:01, 35:01],1091 remarks) +PASS -- TEST control_csawmg_intel [08:32, 08:06] (963104 MB) +PASS -- TEST control_ras_intel [04:31, 04:22] (665476 MB) + +PASS -- COMPILE wam_intel [35:33, 35:33],994 remarks) +PASS -- TEST control_wam_intel [14:46, 14:15] (1582984 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [37:34, 37:34],1294 remarks) +PASS -- TEST control_p8_faster_intel [04:18, 03:40] (1829944 MB) +PASS -- TEST regional_control_faster_intel [06:53, 06:30] (1003744 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [08:19, 08:19](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:17, 02:43] (1567092 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:15, 02:41] (1566212 MB) +PASS -- TEST control_stochy_debug_intel [03:56, 03:45] (776980 MB) +PASS -- TEST control_lndp_debug_intel [03:39, 03:25] (775904 MB) +PASS -- TEST control_csawmg_debug_intel [05:47, 05:22] (1083840 MB) +PASS -- TEST control_ras_debug_intel [03:33, 03:23] (779992 MB) +PASS -- TEST control_diag_debug_intel [03:50, 03:21] (1635516 MB) +PASS -- TEST control_debug_p8_intel [03:46, 03:16] (1854852 MB) +PASS -- TEST regional_debug_intel [22:24, 21:58] (1035008 MB) +PASS -- TEST rap_control_debug_intel [06:21, 06:09] (1165424 MB) +PASS -- TEST hrrr_control_debug_intel [06:17, 05:59] (1160500 MB) +PASS -- TEST hrrr_gf_debug_intel [06:15, 06:03] (1165208 MB) +PASS -- TEST hrrr_c3_debug_intel [06:23, 06:10] (1163396 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [06:21, 06:06] (1170372 MB) +PASS -- TEST rap_diag_debug_intel [06:49, 06:24] (1241080 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:30, 06:15] (1164028 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:26, 06:13] (1161464 MB) +PASS -- TEST rap_lndp_debug_intel [06:23, 06:09] (1168484 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:19, 06:06] (1164048 MB) +PASS -- TEST rap_noah_debug_intel [06:12, 05:59] (1159768 MB) +PASS -- TEST rap_sfcdiff_debug_intel [06:19, 06:07] (1162956 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [10:11, 10:00] (1160244 MB) +PASS -- TEST rrfs_v1beta_debug_intel [06:23, 06:04] (1156404 MB) +PASS -- TEST rap_clm_lake_debug_intel [07:44, 07:26] (1167400 MB) +PASS -- TEST rap_flake_debug_intel [06:28, 06:09] (1169280 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [11:13, 10:41] (1171328 MB) + +PASS -- COMPILE wam_debug_intel [05:16, 05:15](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [17:06, 16:33] (1638676 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [30:51, 30:51](3 warnings,1026 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [06:03, 05:14] (1044596 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:36, 08:15] (897916 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:42, 04:20] (864332 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:18, 07:53] (939920 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [04:26, 04:01] (911368 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:51, 04:30] (853636 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:25, 06:09] (888508 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:31, 02:18] (838156 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [32:18, 32:18](3 warnings,1199 remarks) +PASS -- TEST conus13km_control_intel [03:15, 02:37] (1091112 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:11] (1029764 MB) +PASS -- TEST conus13km_restart_mismatch_intel [01:59, 01:27] (1015356 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [31:12, 31:12](3 warnings,1046 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:55, 05:23] (904808 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:05, 05:05](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:18, 06:02] (1042488 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:03, 05:53] (1036664 MB) +PASS -- TEST conus13km_debug_intel [18:12, 17:36] (1145660 MB) +PASS -- TEST conus13km_debug_qr_intel [18:17, 17:42] (854832 MB) +PASS -- TEST conus13km_debug_2threads_intel [10:44, 10:12] (1082412 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [18:11, 17:39] (1217284 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [05:01, 05:00](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:23, 06:08] (1074836 MB) + +PASS -- COMPILE hafsw_intel [39:51, 39:51](1 warnings,1418 remarks) +PASS -- TEST hafs_regional_atm_intel [07:54, 06:43] (696796 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [06:19, 05:58] (1071008 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [10:23, 08:59] (749000 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:19, 16:06] (787020 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:12, 17:48] (970000 MB) +PASS -- TEST gnv1_nested_intel [07:49, 06:22] (1662692 MB) + +PASS -- COMPILE hafs_all_intel [36:05, 36:05],1265 remarks) +PASS -- TEST hafs_regional_docn_intel [09:37, 08:24] (755092 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [09:42, 08:28] (732976 MB) + +PASS -- COMPILE datm_cdeps_intel [08:20, 08:20],67 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:42, 03:32] (1058740 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [02:17, 02:07] (1046088 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:37, 03:29] (946120 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:38, 03:29] (940936 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:40, 03:32] (933744 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [03:41, 03:33] (1077904 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [03:38, 03:31] (1057216 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:31, 03:25] (928124 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [08:43, 07:41] (897020 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [08:38, 07:40] (855128 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:41, 03:34] (1061480 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [05:07, 04:59] (2430272 MB) +PASS -- TEST datm_cdeps_gfs_intel [05:35, 05:26] (2358980 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [03:26, 03:26](2 warnings +PASS -- TEST datm_cdeps_debug_cfsr_intel [08:11, 08:04] (1031228 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:14, 08:14],70 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:42, 03:34] (1067548 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:49, 01:49],60 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:41, 01:16] (249168 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:21, 01:06] (264144 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:00, 00:41] (263824 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [36:50, 36:50],1015 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:36, 04:48] (1893124 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [36:12, 36:12](1 warnings,1020 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [11:12, 10:27] (1900696 MB) + +PASS -- COMPILE atml_intel [37:26, 37:26](8 warnings,1157 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [06:33, 05:46] (1833248 MB) +PASS -- TEST control_p8_atmlnd_intel [06:35, 05:48] (1841868 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [03:38, 03:13] (1068320 MB) + +PASS -- COMPILE atml_debug_intel [06:17, 06:16](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [08:02, 07:15] (1858244 MB) + +PASS -- COMPILE atmw_intel [36:45, 36:45],1260 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [02:56, 02:20] (1831388 MB) + +PASS -- COMPILE atmaero_intel [36:06, 36:06],1098 remarks) +PASS -- TEST atmaero_control_p8_intel [06:02, 05:15] (1920684 MB) +PASS -- TEST atmaero_control_p8_rad_intel [07:03, 06:18] (1708912 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:54, 06:20] (1718584 MB) + +PASS -- COMPILE atm_fbh_intel [31:25, 31:24](3 warnings,996 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [15:36, 15:17] (1021048 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-11 19:37:32 +Ending Date/Time: 2024-11-12 00:26:55 +Total Time: 04h:49m:23s +Compiles Completed: 37/37 +Tests Completed: 167/167 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF jet REGRESSION TESTING LOG==== diff --git a/tests-dev/logs/RegressionTests_orion.log b/tests-dev/logs/RegressionTests_orion.log new file mode 100644 index 0000000000..4257167ddc --- /dev/null +++ b/tests-dev/logs/RegressionTests_orion.log @@ -0,0 +1,344 @@ +====START OF orion REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +f2d689ee6551f64d5b0dce283191fdc5ac171f3d + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_162545 + +UFS_TEST.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-r) - USE ROCOTO + +PASS -- COMPILE s2swa_32bit_intel [17:59, 17:59](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [27:23, 26:06] (2067132 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [20:58, 20:58](1 warnings,10 remarks) +PASS -- TEST cpld_control_gfsv17_intel [19:23, 18:05] (1946440 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [20:29, 18:52] (2133476 MB) +PASS -- TEST cpld_restart_gfsv17_intel [10:38, 08:41] (1234392 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [21:47, 20:18] (1878904 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [19:46, 19:46](1 warnings,10 remarks) +PASS -- TEST cpld_control_sfs_intel [18:18, 17:38] (1942452 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [08:46, 08:46](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [32:09, 30:40] (1931476 MB) + +PASS -- COMPILE s2swa_intel [17:56, 17:56](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_intel [27:34, 26:17] (2136544 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [27:24, 26:06] (2137784 MB) +PASS -- TEST cpld_restart_p8_intel [15:28, 13:58] (1800456 MB) +PASS -- TEST cpld_control_qr_p8_intel [27:25, 26:04] (2159820 MB) +PASS -- TEST cpld_restart_qr_p8_intel [15:29, 13:52] (1691552 MB) +PASS -- TEST cpld_2threads_p8_intel [25:00, 23:50] (2428940 MB) +PASS -- TEST cpld_decomp_p8_intel [27:31, 26:19] (2128040 MB) +PASS -- TEST cpld_mpi_p8_intel [23:08, 21:56] (2039144 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [27:45, 26:27] (2138356 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:32, 16:28] (2705312 MB) +PASS -- TEST cpld_restart_c192_p8_intel [11:32, 08:41] (2699076 MB) +PASS -- TEST cpld_bmark_p8_intel [27:59, 21:20] (3717752 MB) +PASS -- TEST cpld_restart_bmark_p8_intel [21:49, 13:00] (3492276 MB) +PASS -- TEST cpld_s2sa_p8_intel [09:03, 08:01] (2079280 MB) + +PASS -- COMPILE s2sw_intel [17:03, 17:03](1 warnings,10 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [26:31, 25:32] (1968592 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [13:00, 11:43] (2045176 MB) + +PASS -- COMPILE s2swa_debug_intel [08:56, 08:56](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_p8_intel [24:12, 23:02] (2168904 MB) + +PASS -- COMPILE s2sw_debug_intel [08:21, 08:21](1413 warnings,1230 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [10:05, 09:12] (1995164 MB) + +PASS -- COMPILE s2s_aoflux_intel [14:55, 14:55],3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:56, 04:44] (2035076 MB) + +PASS -- COMPILE s2s_intel [14:31, 14:31](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [09:56, 09:12] (3031844 MB) +PASS -- TEST cpld_warmstart_c48_intel [03:45, 02:54] (3016984 MB) +PASS -- TEST cpld_restart_c48_intel [02:39, 01:48] (2465036 MB) + +PASS -- COMPILE s2swa_faster_intel [17:43, 17:43](1 warnings,10 remarks) +PASS -- TEST cpld_control_p8_faster_intel [28:16, 27:00] (2146100 MB) + +PASS -- COMPILE s2sw_pdlib_intel [19:17, 19:17](1 warnings,10 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [29:55, 28:52] (2011100 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [15:30, 14:18] (1259216 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [33:47, 32:50] (1929132 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [07:49, 07:49](1523 warnings,2000 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [35:59, 34:56] (1971680 MB) + +PASS -- COMPILE atm_dyn32_intel [14:44, 14:44](1 warnings,1 remarks) +PASS -- TEST 2020_CAPE_intel [11:00, 10:47] (842668 MB) +PASS -- TEST baroclinic_wave_intel [06:37, 05:20] (1442060 MB) +PASS -- TEST control_flake_intel [04:07, 03:48] (687348 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:11, 03:35] (1572992 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [04:24, 03:43] (1583912 MB) +PASS -- TEST control_latlon_intel [04:14, 03:42] (1572188 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:22, 03:37] (1577936 MB) +PASS -- TEST control_c48_intel [19:36, 18:57] (1709120 MB) +PASS -- TEST control_c48.v2.sfc_intel [08:42, 08:20] (838296 MB) +PASS -- TEST control_c192_intel [13:57, 13:11] (1747320 MB) +PASS -- TEST control_c384_intel [18:29, 16:42] (1986020 MB) +PASS -- TEST control_c384gdas_intel [12:34, 10:24] (1324940 MB) +PASS -- TEST control_stochy_intel [02:02, 01:50] (644964 MB) +PASS -- TEST control_stochy_restart_intel [01:34, 01:08] (466856 MB) +PASS -- TEST control_lndp_intel [01:53, 01:43] (643860 MB) +PASS -- TEST control_iovr4_intel [03:03, 02:44] (633644 MB) +PASS -- TEST control_iovr5_intel [03:02, 02:45] (638396 MB) +PASS -- TEST control_p8_intel [05:04, 04:01] (1859748 MB) +PASS -- TEST control_p8.v2.sfc_intel [04:28, 03:25] (1876776 MB) +PASS -- TEST control_p8_ugwpv1_intel [05:12, 04:00] (1864988 MB) +PASS -- TEST control_restart_p8_intel [03:20, 02:21] (1091188 MB) +PASS -- TEST control_noqr_p8_intel [04:59, 04:00] (1866940 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:08, 02:14] (1119524 MB) +PASS -- TEST control_decomp_p8_intel [05:10, 04:05] (1858508 MB) +PASS -- TEST control_2threads_p8_intel [05:16, 04:10] (1936084 MB) +PASS -- TEST control_p8_lndp_intel [07:49, 07:13] (1867920 MB) +PASS -- TEST control_p8_rrtmgp_intel [06:03, 04:49] (1937204 MB) +PASS -- TEST control_p8_mynn_intel [04:29, 03:25] (1885132 MB) +PASS -- TEST merra2_thompson_intel [05:09, 03:49] (1882200 MB) +PASS -- TEST regional_control_intel [06:55, 06:30] (1071568 MB) +PASS -- TEST regional_restart_intel [04:05, 03:33] (1075924 MB) +PASS -- TEST regional_decomp_intel [07:16, 06:49] (1073912 MB) +PASS -- TEST regional_2threads_intel [05:15, 04:40] (1061940 MB) +PASS -- TEST regional_noquilt_intel [06:55, 06:24] (1376596 MB) +PASS -- TEST regional_netcdf_parallel_intel [07:09, 06:35] (1078052 MB) +PASS -- TEST regional_2dwrtdecomp_intel [07:00, 06:32] (1076612 MB) +PASS -- TEST regional_wofs_intel [08:32, 08:03] (1895012 MB) + +PASS -- COMPILE rrfs_intel [13:18, 13:18](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [09:39, 08:29] (1051472 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [06:02, 05:16] (1248052 MB) +PASS -- TEST rap_decomp_intel [09:58, 08:53] (1012080 MB) +PASS -- TEST rap_2threads_intel [09:48, 08:46] (1148916 MB) +PASS -- TEST rap_restart_intel [05:25, 04:28] (1032428 MB) +PASS -- TEST rap_sfcdiff_intel [09:46, 08:40] (1040780 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [15:12, 13:28] (1016928 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:41, 06:22] (1071260 MB) +PASS -- TEST hrrr_control_intel [05:32, 04:23] (1021948 MB) +PASS -- TEST hrrr_control_decomp_intel [05:38, 04:30] (1012364 MB) +PASS -- TEST hrrr_control_2threads_intel [10:46, 09:39] (1090260 MB) +PASS -- TEST hrrr_control_restart_intel [02:48, 02:22] (935264 MB) +PASS -- TEST rrfs_v1beta_intel [09:53, 08:40] (1046272 MB) +PASS -- TEST rrfs_v1nssl_intel [10:10, 09:52] (1976456 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [09:57, 09:38] (2015172 MB) + +PASS -- COMPILE csawmg_intel [13:07, 13:07] +PASS -- TEST control_csawmg_intel [07:04, 06:34] (1013272 MB) +PASS -- TEST control_ras_intel [03:44, 03:30] (710216 MB) + +PASS -- COMPILE wam_intel [12:35, 12:35],1 remarks) +PASS -- TEST control_wam_intel [13:28, 12:48] (1651120 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [12:49, 12:49],1 remarks) +PASS -- TEST control_p8_faster_intel [04:27, 03:14] (1873884 MB) +PASS -- TEST regional_control_faster_intel [06:51, 06:20] (1071948 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [10:20, 10:20](882 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [03:03, 02:27] (1604596 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [02:49, 02:13] (1599944 MB) +PASS -- TEST control_stochy_debug_intel [03:34, 03:24] (815416 MB) +PASS -- TEST control_lndp_debug_intel [02:59, 02:45] (814980 MB) +PASS -- TEST control_csawmg_debug_intel [05:35, 05:12] (1130096 MB) +PASS -- TEST control_ras_debug_intel [02:58, 02:44] (820868 MB) +PASS -- TEST control_diag_debug_intel [03:30, 02:52] (1667804 MB) +PASS -- TEST control_debug_p8_intel [03:25, 02:46] (1894056 MB) +PASS -- TEST regional_debug_intel [17:49, 17:20] (1104144 MB) +PASS -- TEST rap_control_debug_intel [05:13, 05:03] (1205172 MB) +PASS -- TEST hrrr_control_debug_intel [05:04, 04:50] (1195544 MB) +PASS -- TEST hrrr_gf_debug_intel [05:16, 04:59] (1202256 MB) +PASS -- TEST hrrr_c3_debug_intel [05:20, 05:04] (1203716 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [05:18, 05:03] (1197088 MB) +PASS -- TEST rap_diag_debug_intel [05:45, 05:22] (1281912 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [05:15, 05:00] (1205128 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [05:17, 05:06] (1194504 MB) +PASS -- TEST rap_lndp_debug_intel [05:11, 04:58] (1203736 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [05:09, 04:59] (1204164 MB) +PASS -- TEST rap_noah_debug_intel [05:12, 04:58] (1196508 MB) +PASS -- TEST rap_sfcdiff_debug_intel [05:10, 04:58] (1199964 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:14, 08:01] (1197072 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:13, 05:00] (1199272 MB) +PASS -- TEST rap_clm_lake_debug_intel [06:21, 06:09] (1209328 MB) +PASS -- TEST rap_flake_debug_intel [05:15, 05:00] (1205448 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [09:39, 08:31] (1198888 MB) + +PASS -- COMPILE wam_debug_intel [07:17, 07:17](837 warnings,1 remarks) +PASS -- TEST control_wam_debug_intel [13:37, 13:02] (1675124 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [13:14, 13:14](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:45, 05:02] (1126100 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [08:11, 07:11] (995944 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [05:17, 03:51] (911108 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:26, 07:28] (1065612 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [10:11, 08:45] (941096 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:18, 03:55] (886264 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:38, 05:27] (960132 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [02:37, 02:04] (874296 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [13:11, 13:11](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:08, 02:31] (1164968 MB) +PASS -- TEST conus13km_2threads_intel [01:43, 01:09] (1106228 MB) +PASS -- TEST conus13km_restart_mismatch_intel [02:10, 01:34] (1061984 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [12:45, 12:45](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [05:08, 04:37] (970332 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [06:40, 06:40](785 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [05:10, 04:55] (1080712 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [05:08, 04:50] (1071808 MB) +PASS -- TEST conus13km_debug_intel [15:11, 14:32] (1228576 MB) +PASS -- TEST conus13km_debug_qr_intel [14:45, 14:06] (932656 MB) +PASS -- TEST conus13km_debug_2threads_intel [08:38, 07:59] (1164064 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [14:10, 13:32] (1295492 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [06:19, 06:19](785 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:22, 05:04] (1124940 MB) + +PASS -- COMPILE hafsw_intel [15:00, 15:00](1 warnings,9 remarks) +PASS -- TEST hafs_regional_atm_intel [07:55, 06:47] (731352 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [07:27, 07:02] (1117576 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:36, 08:12] (811228 MB) +PASS -- TEST hafs_regional_atm_wav_intel [26:25, 25:13] (843108 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [30:13, 28:49] (862804 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [08:39, 07:46] (494556 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [10:48, 09:28] (502696 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:29, 03:44] (376628 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [13:20, 11:00] (480448 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [06:07, 05:21] (520728 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:52, 05:01] (524796 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [07:27, 06:31] (563252 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [02:10, 01:44] (401656 MB) +PASS -- TEST gnv1_nested_intel [06:50, 04:39] (1714116 MB) + +PASS -- COMPILE hafsw_debug_intel [07:34, 07:34](1465 warnings,1502 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [15:02, 14:04] (580736 MB) + +PASS -- COMPILE hafsw_faster_intel [14:42, 14:42],8 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [14:25, 13:32] (657748 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [14:36, 13:23] (680848 MB) + +PASS -- COMPILE hafs_mom6w_intel [15:25, 15:25],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [10:55, 09:13] (702068 MB) + +PASS -- COMPILE hafs_all_intel [14:22, 14:22],8 remarks) +PASS -- TEST hafs_regional_docn_intel [09:25, 08:14] (816388 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [09:17, 08:07] (794164 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [17:13, 16:28] (1203184 MB) + +PASS -- COMPILE datm_cdeps_intel [07:53, 07:53],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [03:10, 03:01] (1151072 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [02:08, 01:56] (1102468 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [03:05, 02:55] (1021820 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [03:04, 02:54] (1020200 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [03:01, 02:53] (1015876 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [02:47, 02:36] (1150072 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [02:52, 02:43] (1152932 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [02:43, 02:34] (1014320 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:50, 06:48] (1023680 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [07:50, 06:47] (1007332 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [03:04, 02:58] (1137652 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:34, 04:25] (2455456 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:42, 04:32] (2456876 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [05:17, 05:17](2 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:37, 06:28] (1078768 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [07:28, 07:28],2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:08, 02:59] (1158948 MB) + +PASS -- COMPILE datm_cdeps_land_intel [01:20, 01:19],1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [01:54, 01:29] (254332 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [01:33, 01:13] (323048 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [01:03, 00:46] (323792 MB) + +PASS -- COMPILE datm_cdeps_lm4_intel [02:00, 02:00](12 warnings +PASS -- TEST datm_cdeps_lm4_gswp3_intel [01:11, 00:48] (562812 MB) +PASS -- TEST datm_cdeps_lm4_gswp3_rst_intel [00:49, 00:24] (444312 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [13:30, 13:30],3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:10, 04:05] (1972912 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [13:53, 13:53](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [09:37, 08:37] (1972640 MB) + +PASS -- COMPILE atml_intel [14:30, 14:30](8 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_sbs_intel [08:12, 06:50] (1863164 MB) +PASS -- TEST control_p8_atmlnd_intel [08:16, 06:53] (1862168 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [04:34, 03:47] (1061736 MB) + +PASS -- COMPILE atml_debug_intel [08:18, 08:18](880 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:46, 06:24] (1891252 MB) + +PASS -- COMPILE atmw_intel [13:53, 13:53],8 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [03:16, 02:06] (1894340 MB) + +PASS -- COMPILE atmaero_intel [13:15, 13:14],1 remarks) +PASS -- TEST atmaero_control_p8_intel [05:43, 04:37] (1973876 MB) +PASS -- TEST atmaero_control_p8_rad_intel [06:32, 05:23] (1751104 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [06:27, 05:32] (1764488 MB) + +PASS -- COMPILE atmaq_debug_intel [06:17, 06:17](882 warnings,6 remarks) +PASS -- TEST regional_atmaq_debug_intel [23:09, 21:26] (4489792 MB) + +PASS -- COMPILE atm_fbh_intel [12:16, 12:16](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [14:44, 14:27] (1078596 MB) + +PASS -- COMPILE hafsw_intelllvm [08:03, 08:03],7 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intelllvm [09:45, 08:47] (572880 MB) + +PASS -- COMPILE hafsw_debug_intelllvm [04:54, 04:54](1141 warnings,1490 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm [20:58, 20:07] (563404 MB) + + +SYNOPSIS: +Starting Date/Time: 2024-11-11 16:51:16 +Ending Date/Time: 2024-11-11 22:57:49 +Total Time: 06h:06m:33s +Compiles Completed: 45/45 +Tests Completed: 192/192 + + +NOTES: +A file test_changes.list was generated but is empty. +If you are using this log as a pull request verification, please commit test_changes.list. + +Result: SUCCESS + +====END OF orion REGRESSION TESTING LOG==== diff --git a/tests-dev/machine_config/machine_derecho.config b/tests-dev/machine_config/machine_derecho.config index 0896f7aa1c..6c873db434 100644 --- a/tests-dev/machine_config/machine_derecho.config +++ b/tests-dev/machine_config/machine_derecho.config @@ -7,9 +7,6 @@ module load rocoto module use -a /glade/work/epicufsrt/conda/modulefiles.derecho module load anaconda/23.7.4 -cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN -cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN - ROCOTORUN=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotorun ROCOTOSTAT=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotostat ROCOTOCOMPLETE=/glade/work/epicufsrt/contrib/derecho/rocoto/bin/rocotocomplete diff --git a/tests-dev/machine_config/machine_noaacloud.config b/tests-dev/machine_config/machine_noaacloud.config index 31333c256e..8fe15f8f66 100644 --- a/tests-dev/machine_config/machine_noaacloud.config +++ b/tests-dev/machine_config/machine_noaacloud.config @@ -3,11 +3,14 @@ set -eux export PATH=/contrib/EPIC/bin:${PATH} module use /apps/modules/modulefiles -module load rocoto/1.3.3 +module use /contrib/EPIC/rocoto/modulefiles -ROCOTORUN=/apps/rocoto/1.3.3/bin/rocotorun -ROCOTOSTAT=/apps/rocoto/1.3.3/bin/rocotostat -ROCOTOCOMPLETE=/apps/rocoto/1.3.3/bin/rocotocomplete +module load intelpython/2023.2.0 +module load rocoto/1.3.7 + +ROCOTORUN=/contrib/EPIC/rocoto/1.3.7/bin/rocotorun +ROCOTOSTAT=/contrib/EPIC/rocoto/1.3.7/bin/rocotostat +ROCOTOCOMPLETE=/contrib/EPIC/rocoto/1.3.7/bin/rocotocomplete ROCOTO_SCHEDULER=slurm export ROCOTORUN export ROCOTOSTAT diff --git a/tests-dev/machine_config/machine_orion.config b/tests-dev/machine_config/machine_orion.config index 09487fa9ab..5c0b3d8388 100644 --- a/tests-dev/machine_config/machine_orion.config +++ b/tests-dev/machine_config/machine_orion.config @@ -2,7 +2,9 @@ set -eux module load gcc/12.2.0 -module load python/3.10.8 +#module load python/3.10.8 +module use -a /work/noaa/epic/conda/modulefiles.orion +module load anaconda/23.7.4 module load contrib ruby/3.2.3 rocoto/1.3.7 ROCOTORUN=/apps/contrib/rocoto/1.3.7/bin/rocotorun diff --git a/tests-dev/test_cases/exp_conf/2020_CAPE.IN b/tests-dev/test_cases/exp_conf/2020_CAPE.IN new file mode 100644 index 0000000000..bd2b05efaf --- /dev/null +++ b/tests-dev/test_cases/exp_conf/2020_CAPE.IN @@ -0,0 +1,176 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi + +echo "inputdir=$inputdir,NPX=$NPX,NESTED=$NESTED" + +OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} +HSD_CASE=${HSD_CASE:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + if [ "$NESTED" = .true. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_nested/* ./INPUT/. + elif [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + elif [ "$HSD_CASE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/HSD_input_data/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. + fi +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + # WAVE restart file for ATMW ORT tests + if [[ $CPLWAV == .true. ]]; then + if [[ $med_model == cmeps ]] && [[ $RUNTYPE == continue ]]; then + # CMEPS restart and pointer files + RFILE=ufs.atmw.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + fi + RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . + fi + + if [ $MODEL_INITIALIZATION = "false" ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialization time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = "false" ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/oro_data.tile*.nc INPUT/. + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi +fi + +if [ $TILEDFIX = .true. ]; then + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + if [ $WW3_MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . +fi diff --git a/tests-dev/test_cases/exp_conf/baroclinic_wave.IN b/tests-dev/test_cases/exp_conf/baroclinic_wave.IN new file mode 100644 index 0000000000..e1c7ead15d --- /dev/null +++ b/tests-dev/test_cases/exp_conf/baroclinic_wave.IN @@ -0,0 +1,178 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi + +echo "inputdir=$inputdir,NPX=$NPX,NESTED=$NESTED" + +HSD_CASE=${HSD_CASE:-false} +if [ "$HSD_CASE" = "true" ]; then + cp @[INPUTDATA_ROOT]/HSD_input_data/global_hyblev.l128.txt . +fi + +OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + if [ "$NESTED" = .true. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_nested/* ./INPUT/. + elif [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. + fi +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + # WAVE restart file for ATMW ORT tests + if [[ $CPLWAV == .true. ]]; then + if [[ $med_model == cmeps ]] && [[ $RUNTYPE == continue ]]; then + # CMEPS restart and pointer files + RFILE=ufs.atmw.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + fi + RFILE=ufs.atmw.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . + fi + + if [ $MODEL_INITIALIZATION = "false" ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialiation time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = "false" ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/oro_data.tile*.nc INPUT/. + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi +fi + +if [ $TILEDFIX = .true. ]; then + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + if [ $WW3_MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/@[POST_ITAG] itag + cp ${PATHRT}/parm/@[POSTXCONFIG] postxconfig-NT.txt + cp ${PATHRT}/parm/@[POSTXCONFIG_FH00] postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . +fi diff --git a/tests-dev/test_cases/parm/baroclinic_wave.nml.IN b/tests-dev/test_cases/parm/baroclinic_wave.nml.IN new file mode 100644 index 0000000000..2b96ef620d --- /dev/null +++ b/tests-dev/test_cases/parm/baroclinic_wave.nml.IN @@ -0,0 +1,386 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .true. + ccpp_suite = 'FV3_GFS_v17_p8_ugwpv1' + +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = 300 + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 16000000 + print_memory_usage = .false. + +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + +&fv_core_nml + layout = 4,8 + io_layout = 1,1 + npx = 193 + npy = 193 + ntiles = 6 + npz = 127 + dz_min = 6 + psm_bc = 1 + grid_type = 0 + make_nh = .true. + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 0. + rf_cutoff = 10. + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 5 + nwat = 6 + na_init = 0 + d_ext = 0. + dnats = 0 + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .false. + external_eta = .false. + gfs_phil = .false. + nggps_ic = .false. + fv_eta_file='global_hyblev.l128.txt' + npz_type='input' + mountain = .false. + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = .false. + fast_tau_w_sec = 0.2 + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = .false. + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = .false. + res_latlon_dynamics = "" + +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&gfs_physics_nml + fhzero = 6 + h2o_phys = .true. + ldiag3d = .false. + qdiag3d = .false. + print_diff_pgr = .false. + fhcyc = 0 + use_ufo = .true. + pre_rad = .false. + imp_physics = 8 + iovr = 3 + ltaerosol = .false. + lradar = .true. + ttendlim = -999 + dt_inner = 450 + sedi_semi = .true. + decfl = 10 + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = .false. + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = .true. + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_ugwp_v1_orog_only = .false. + min_lakeice = 0.15 + min_seaice = 0.15 + use_cice_alb = .false. + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 2 + iems = 2 + iaer = 1011 + icliq_sw = 2 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = .false. + lseaspray = .true. + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + progsigma = .true. + betascu = 8.0 + betamcu = 1.0 + betadcu = 2.0 + ras = .false. + cdmbgwd = 10.0,3.5,1.0,1.0 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 2 + iopt_dveg = 4 + iopt_crs = 2 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 3 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 3 + iopt_alb = 1 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 3 + iopt_trs = 2 + iopt_diag = 1 + debug = .false. + nstf_name = 2,0,0,0,0 + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = .false. + effr_in = .true. + ldiag_ugwp = .false. + do_RRTMGP = .false. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = .false. + doGP_lwscat = .false. + do_sppt = .false. + do_shum = .false. + do_skeb = .false. + frac_grid = .true. + cplchm = .false. + cplflx = .false. + cplice = .false. + cplwav = .false. + cplwav2atm = .false. + do_ca = .true. + ca_global = .false. + ca_sgs = .true. + nca = 1 + ncells = 5 + nlives = 12 + nseed = 1 + nfracseed = 0.5 + nthresh = 18 + ca_trigger = .true. + nspinup = 1 + iseed_ca = 485671814 +/ +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 2 + knob_ugwp_ndx4lh = 4 + knob_ugwp_version = 1 + knob_ugwp_palaunch = 275.0e2 + knob_ugwp_nslope = 1 + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = 1.5e-3 + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 + + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = @[FNAISC] + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = .false. + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = 0 + FSICS = 0 + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' + +/ + +&nam_stochy +/ +&nam_sfcperts +/ + &test_case_nml ! cold start + test_case = 13 +/ + diff --git a/tests-dev/test_cases/tests/2020_CAPE b/tests-dev/test_cases/tests/2020_CAPE new file mode 100644 index 0000000000..7726af7030 --- /dev/null +++ b/tests-dev/test_cases/tests/2020_CAPE @@ -0,0 +1,53 @@ +############################################################################### +# +# 2020 July CAPE Case Study: GFSv16 atmosphere only at C48L127 +# +############################################################################### + +export TEST_DESCR="Compare 2020 July CAPE Case study results with previous trunk version" + +export CNTL_DIR=2020_CAPE + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc" + +export_fv3_v16 + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2020 +export SMONTH=07 +export SDAY=23 +export SHOUR=00 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," +export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," +export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," +export FNMSKH_control="'global_slmask.t62.192.94.grb'," + + +export FV3_RUN=2020_CAPE.IN +export CCPP_SUITE='FV3_GFS_v16' +export INPUT_NML=control.nml.IN +export HSD_CASE=true + diff --git a/tests-dev/test_cases/tests/baroclinic_wave b/tests-dev/test_cases/tests/baroclinic_wave new file mode 100644 index 0000000000..259a075549 --- /dev/null +++ b/tests-dev/test_cases/tests/baroclinic_wave @@ -0,0 +1,57 @@ +############################################################################### +# +# Baroclinic Wave Idealized Test Case (atmosphere only, dycore only) at C192L127 +# +############################################################################### + +export TEST_DESCR="Compare baroclinic wave test case C192L127 results with previous trunk version" + +export CNTL_DIR=baroclinic_wave + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24" + +export ATMRES=C192 + +export_fv3 +export_tiled +export_ugwpv1 + +export INPES=4 +export WRTTASK_PER_GROUP=12 +export NPZ=127 +export NPZP=128 +export NPX=193 +export NPY=193 +export SYEAR=2019 +export SMONTH=12 +export SDAY=03 +export SHOUR=00 +export DT_ATMOS=450 +export RESTART_INTERVAL='480 -1' +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export IOVR=3 +export IMO=768 +export JMO=384 +export IDEFLATE=1 +export ICHUNK2D=768 +export JCHUNK2D=384 +export ICHUNK3D=768 +export JCHUNK3D=384 +export KCHUNK3D=1 +export OUTPUT_FH='0 6 12 18 24' + +export FV3_RUN=baroclinic_wave.IN +export INPUT_NML=baroclinic_wave.nml.IN +export CCPP_SUITE='FV3_GFS_v17_p8_ugwpv1' +export HSD_CASE=true + diff --git a/tests-dev/ufs_test.sh b/tests-dev/ufs_test.sh index 47bc6568c9..a9c5c08201 100755 --- a/tests-dev/ufs_test.sh +++ b/tests-dev/ufs_test.sh @@ -86,6 +86,7 @@ ACCNR=${ACCNR:-""} UFS_TEST_YAML="ufs_test.yaml" export UFS_TEST_YAML LINK_TESTS=false +TEST_TEMP_YAML=false while getopts ":a:b:cl:mn:dwkreohs" opt; do case ${opt} in @@ -95,9 +96,6 @@ while getopts ":a:b:cl:mn:dwkreohs" opt; do b) NEW_BASELINES_FILE=${OPTARG} export NEW_BASELINES_FILE - python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_b()" - UFS_TEST_YAML="ufs_test_temp.yaml" - export UFS_TEST_YAML ;; c) CREATE_BASELINE=true @@ -132,9 +130,7 @@ while getopts ":a:b:cl:mn:dwkreohs" opt; do export SRT_NAME export SRT_COMPILER - python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_n()" - UFS_TEST_YAML="ufs_test_temp.yaml" - export UFS_TEST_YAML + TEST_TEMP_YAML=true ;; d) export delete_rundir=true @@ -193,6 +189,18 @@ else exit 1 fi +if [[ ! ${NEW_BASELINES_FILE} == '' ]]; then + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_b()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML +fi + +if [[ ${TEST_TEMP_YAML} == true ]]; then + python -c "import ufs_test_utils; ufs_test_utils.update_testyaml_n()" + UFS_TEST_YAML="ufs_test_temp.yaml" + export UFS_TEST_YAML +fi + # If -s; link sharable test scripts from tests directory if [[ ${LINK_TESTS} == true ]]; then if ! python -c "import ufs_test_utils; ufs_test_utils.sync_testscripts()" @@ -200,6 +208,10 @@ if [[ ${LINK_TESTS} == true ]]; then echo "*** error: python sync_testscripts! ***" exit 1 fi + + cp "${PATHRT}"/test_cases/tests/* "${PATHRT}"/tests + cp "${PATHRT}"/test_cases/exp_conf/* "${PATHRT}"/fv3_conf + cp "${PATHRT}"/test_cases/parm/* "${PATHRT}"/parm fi #Check to error out if incompatible options are chosen together diff --git a/tests-dev/ufs_test.yaml b/tests-dev/ufs_test.yaml index cfd80ab693..ea8e50df69 100644 --- a/tests-dev/ufs_test.yaml +++ b/tests-dev/ufs_test.yaml @@ -3,546 +3,626 @@ s2swa_32bit_intel: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_p8_mixedmode: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_p8_mixedmode: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_32bit_pdlib_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_gfsv17: {'project':['daily'],'turnoff':['noaacloud']} -# - cpld_control_gfsv17_iau: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} - - cpld_mpi_gfsv17: {'project':['daily'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_control_gfsv17: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_gfsv17_iau: {'project':['regression'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_restart_gfsv17: {'project':['regression'],'dependency':'cpld_control_gfsv17','turnoff':['noaacloud']} + - cpld_mpi_gfsv17: {'project':['regression'],'turnoff':['noaacloud']} s2swa_32bit_pdlib_sfs_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_sfs: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_sfs: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_32bit_pdlib_debug_intel: build: compiler: 'intel' option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnoff: ['noaacloud','jet'] tests: - - cpld_debug_gfsv17: {'project':['daily'],'turnoff':['noaacloud','jet']} + - cpld_debug_gfsv17: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','jet']} s2swa_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' - tests: - - cpld_control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_control_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_restart_qr_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_2threads_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_decomp_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_mpi_p8: {'project':['daily'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} - - cpld_control_ciceC_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_control_c192_p8: {'project':['daily'],'turnoff':['wcoss2','jet','acorn','s4','noaacloud']} - - cpld_restart_c192_p8: {'project':['daily'],'dependency':'cpld_control_c192_p8','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} - - cpld_bmark_p8: {'project':['daily'],'turnoff':['s4','jet','acorn','noaacloud']} - - cpld_restart_bmark_p8: {'project':['daily'],'dependency':'cpld_bmark_p8','turnoff':['s4','jet','acorn','noaacloud']} - - cpld_s2sa_p8: {'project':['daily'],'turnoff':['noaacloud']} + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' + tests: + - cpld_control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_p8.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_p8: {'project':['regression'],'dependency':'cpld_control_p8','turnoff':['noaacloud']} + - cpld_control_qr_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_restart_qr_p8: {'project':['regression'],'dependency':'cpld_control_qr_p8','turnoff':['noaacloud']} + - cpld_2threads_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_decomp_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_mpi_p8: {'project':['regression'],'turnoff':['noaacloud']} + - cpld_control_ciceC_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_control_c192_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_restart_c192_p8: {'project':['regression'],'dependency':'cpld_control_c192_p8','turnoff':['wcoss2','jet','acorn','s4','noaacloud']} + - cpld_bmark_p8: {'project':['regression'],'baseline': 'True','turnoff':['s4','jet','acorn','noaacloud']} + - cpld_restart_bmark_p8: {'project':['regression'],'dependency':'cpld_bmark_p8','turnoff':['s4','jet','acorn','noaacloud']} + - cpld_s2sa_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2sw_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_noaero_p8: {'project':['daily']} - - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_noaero_p8: {'project':['regression'],'baseline': 'True'} + - cpld_control_nowave_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2swa_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','noaacloud','acorn'] tests: - - cpld_debug_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - cpld_debug_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} s2sw_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','noaacloud','acorn'] tests: - - cpld_debug_noaero_p8: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - cpld_debug_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} s2s_aoflux_intel: build: compiler: 'intel' option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' tests: - - cpld_control_noaero_p8_agrid: {'project':['daily']} + - cpld_control_noaero_p8_agrid: {'project':['regression'],'baseline': 'True'} s2s_intel: build: compiler: 'intel' - option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' tests: - - cpld_control_c48: {'project':['daily']} - - cpld_warmstart_c48: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_c48: {'project':['daily'],'dependency':'cpld_warmstart_c48','turnoff':['noaacloud']} + - cpld_control_c48: {'project':['regression'],'baseline': 'True'} + - cpld_warmstart_c48: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_c48: {'project':['regression'],'dependency':'cpld_warmstart_c48','turnoff':['noaacloud']} s2swa_faster_intel: build: compiler: 'intel' - option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DFASTER=ON' turnoff: ['noaacloud'] tests: - - cpld_control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_control_p8_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} s2sw_pdlib_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnoff: ['noaacloud'] tests: - - cpld_control_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} - - cpld_restart_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} - - cpld_mpi_pdlib_p8: {'project':['daily'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} + - cpld_control_pdlib_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - cpld_restart_pdlib_p8: {'project':['regression'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} + - cpld_mpi_pdlib_p8: {'project':['regression'],'dependency':'cpld_control_pdlib_p8','turnoff':['noaacloud']} s2sw_pdlib_debug_intel: build: compiler: 'intel' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - cpld_debug_pdlib_p8: {'project':['daily'],'turnoff':['noaacloud']} + - cpld_debug_pdlib_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_dyn32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON' tests: - - control_flake: {'project':['daily']} - - control_CubedSphereGrid: {'project':['daily']} - - control_CubedSphereGrid_parallel: {'project':['daily'],'turnoff':['noaacloud']} - - control_latlon: {'project':['daily'],'turnoff':['noaacloud']} - - control_wrtGauss_netcdf_parallel: {'project':['daily'],'turnoff':['noaacloud']} - - control_c48: {'project':['daily'],'turnoff':['noaacloud']} - - control_c48.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - control_c192: {'project':['daily'],'turnoff':['noaacloud']} - - control_c384: {'project':['daily'],'turnoff':['noaacloud']} - - control_c384gdas: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy_restart: {'project':['daily'],'dependency':'control_stochy','turnoff':['noaacloud']} - - control_lndp: {'project':['daily'],'turnoff':['noaacloud']} - - control_iovr4: {'project':['daily'],'turnoff':['noaacloud']} - - control_iovr5: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8.v2.sfc: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_ugwpv1: {'project':['daily'],'turnoff':['noaacloud']} - - control_restart_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_restart_noqr_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_decomp_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_2threads_p8: {'project':['daily'],'dependency':'control_p8','turnoff':['noaacloud']} - - control_p8_lndp: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_rrtmgp: {'project':['daily'],'turnoff':['noaacloud']} - - control_p8_mynn: {'project':['daily'],'turnoff':['noaacloud']} - - merra2_thompson: {'project':['daily'],'turnoff':['noaacloud']} - - regional_control: {'project':['daily'],'turnoff':['noaacloud']} - - regional_restart: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} - - regional_decomp: {'project':['daily'],'dependency':'regional_control','turnoff':['noaacloud']} - - regional_2threads: {'project':['daily'],'dependency':'regional_control','turnoff':['derecho','noaacloud']} - - regional_noquilt: {'project':['daily'],'turnoff':['jet','s4']} - - regional_netcdf_parallel: {'project':['daily'],'turnoff':['acorn']} - - regional_2dwrtdecomp: {'project':['daily'],'dependency':'regional_control','turnoff':['acorn']} - - regional_wofs: {'project':['daily'],'turnoff':['jet','s4']} -ifi_intel: - build: - compiler: 'intel' - option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON' - turnon: ['acorn'] - tests: - - regional_ifi_control: {'project':['daily'],'turnon':['acorn']} - - regional_ifi_decomp: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} - - regional_ifi_2threads: {'project':['daily'],'dependency':'regional_ifi_control','turnon':['acorn']} + - 2020_CAPE: {'project':['test_case'],'baseline': 'True'} + - baroclinic_wave: {'project':['test_case'],'baseline': 'True'} + - control_flake: {'project':['regression'],'baseline': 'True'} + - control_CubedSphereGrid: {'project':['regression'],'baseline': 'True'} + - control_CubedSphereGrid_parallel: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_latlon: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c48: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c48.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c192: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c384: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_c384gdas: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy_restart: {'project':['regression'],'dependency':'control_stochy','turnoff':['noaacloud']} + - control_lndp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_iovr4: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_iovr5: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8.v2.sfc: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_ugwpv1: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_restart_p8: {'project':['regression'],'dependency':'control_p8','turnoff':['noaacloud']} + - control_noqr_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_restart_noqr_p8: {'project':['regression'],'dependency':'control_noqr_p8','turnoff':['noaacloud']} + - control_decomp_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_2threads_p8: {'project':['regression'],'turnoff':['noaacloud']} + - control_p8_lndp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_rrtmgp: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_p8_mynn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - merra2_thompson: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_restart: {'project':['regression'],'dependency':'regional_control','turnoff':['noaacloud']} + - regional_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - regional_2threads: {'project':['regression'],'turnoff':['derecho','noaacloud']} + - regional_noquilt: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4']} + - regional_netcdf_parallel: {'project':['regression'],'baseline': 'True','turnoff':['acorn']} + - regional_2dwrtdecomp: {'project':['regression'],'turnoff':['acorn']} + - regional_wofs: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4']} rrfs_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' tests: - - rap_control: {'project':['daily']} - - regional_spp_sppt_shum_skeb: {'project':['daily']} - - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_restart: {'project':['daily'],'dependency':'rap_control','turnoff':['noaacloud']} - - rap_sfcdiff: {'project':['daily'],'turnoff':['noaacloud']} - - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} - - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} - - hrrr_control: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnoff':['noaacloud']} - - rrfs_v1beta: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1nssl: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1nssl_nohailnoccn: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control: {'project':['regression'],'baseline': 'True'} + - regional_spp_sppt_shum_skeb: {'project':['regression'],'baseline': 'True'} + - rap_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - rap_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - rap_restart: {'project':['regression'],'dependency':'rap_control','turnoff':['noaacloud']} + - rap_sfcdiff: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_sfcdiff_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - rap_sfcdiff_restart: {'project':['regression'],'dependency':'rap_sfcdiff','turnoff':['noaacloud']} + - hrrr_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_decomp: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_restart: {'project':['regression'],'dependency':'hrrr_control','turnoff':['noaacloud']} + - rrfs_v1beta: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1nssl: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1nssl_nohailnoccn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} csawmg_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' turnoff: ['noaacloud'] tests: - - control_csawmg: {'project':['daily'],'turnoff':['noaacloud']} - - control_ras: {'project':['daily'],'turnoff':['noaacloud']} -csawmg_gnu: - build: - compiler: 'gnu' - option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' - turnon: ['hera','hercules'] - tests: - - control_csawmg: {'project':['daily'],'turnon':['hera','hercules']} + - control_csawmg: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_ras: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} wam_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON' turnoff: ['noaacloud'] tests: - - control_wam: {'project':['daily'],'turnoff':['noaacloud']} + - control_wam: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_faster_dyn32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON' tests: - - control_p8_faster: {'project':['daily'],'turnoff':['noaacloud']} - - regional_control_faster: {'project':['daily'],'turnoff':['noaacloud']} + - control_p8_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_control_faster: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_debug_dyn32_intel: build: compiler: 'intel' - option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' + option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' turnoff: ['noaacloud'] tests: - - control_CubedSphereGrid_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_wrtGauss_netcdf_parallel_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_stochy_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_csawmg_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_ras_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} - - control_debug_p8: {'project':['daily'],'turnoff':['noaacloud']} - - regional_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_control_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_gf_debug: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_c3_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_unified_drag_suite_debug: {'project':['daily'],'dependency':'rap_control_debug','turnoff':['noaacloud']} - - rap_diag_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_unified_ugwp_debug: {'project':['daily'],'dependency':'rap_cires_ugwp_debug','turnoff':['noaacloud']} - - rap_lndp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_progcld_thompson_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_noah_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_sfcdiff_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rrfs_v1beta_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_clm_lake_debug: {'project':['daily'],'turnoff':['noaacloud']} - - rap_flake_debug: {'project':['daily'],'turnoff':['noaacloud']} - - gnv1_c96_no_nest_debug: {'project':['daily'],'turnoff':['noaacloud']} + - control_CubedSphereGrid_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_wrtGauss_netcdf_parallel_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_stochy_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_lndp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_csawmg_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_ras_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_diag_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - control_debug_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - regional_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_control_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_gf_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_c3_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_unified_drag_suite_debug: {'project':['regression'],'turnoff':['noaacloud']} + - rap_diag_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_unified_ugwp_debug: {'project':['regression'],'turnoff':['noaacloud']} + - rap_lndp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_progcld_thompson_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_noah_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_sfcdiff_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rrfs_v1beta_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_clm_lake_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_flake_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - gnv1_c96_no_nest_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_debug_dyn32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1' turnon: ['hera','hercules'] tests: - - control_csawmg_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_csawmg_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} wam_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - control_wam_debug: {'project':['daily'],'turnoff':['noaacloud','hercules']} + - control_wam_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','hercules']} rrfs_dyn32_phy32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - regional_spp_sppt_shum_skeb_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - rap_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} - - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} - - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} + - regional_spp_sppt_shum_skeb_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - rap_2threads_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_2threads_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - hrrr_control_decomp_dyn32_phy32: {'project':['regression'],'turnoff':['noaacloud']} + - rap_restart_dyn32_phy32: {'project':['regression'],'dependency':'rap_control_dyn32_phy32','turnoff':['noaacloud']} + - hrrr_control_restart_dyn32_phy32: {'project':['regression'],'dependency':'hrrr_control_dyn32_phy32','turnoff':['noaacloud']} rrfs_dyn32_phy32_faster_intel: build: compiler: 'intel' option: '-DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - conus13km_control: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} - - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnoff':['noaacloud']} + - conus13km_control: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_2threads: {'project':['regression'],'dependency':'conus13km_control','turnoff':['noaacloud']} + - conus13km_restart_mismatch: {'project':['regression'],'dependency':'conus13km_control','turnoff':['noaacloud']} rrfs_dyn64_phy32_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' turnoff: ['noaacloud'] tests: - - rap_control_dyn64_phy32: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} rrfs_dyn32_phy32_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_debug: {'project':['daily'],'turnoff':['noaacloud']} - - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} - - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnoff':['noaacloud']} - - conus13km_radar_tten_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hrrr_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - conus13km_debug_qr: {'project':['regression'],'turnoff':['noaacloud']} + - conus13km_debug_2threads: {'project':['regression'],'turnoff':['noaacloud']} + - conus13km_radar_tten_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} rrfs_dyn64_phy32_debug_intel: build: compiler: 'intel' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' turnoff: ['noaacloud'] tests: - - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnoff':['noaacloud']} + - rap_control_dyn64_phy32_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} hafsw_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON' tests: - - hafs_regional_atm: {'project':['daily']} - - hafs_regional_atm_thompson_gfdlsf: {'project':['daily']} - - hafs_regional_atm_ocn: {'project':['daily']} - - hafs_regional_atm_wav: {'project':['daily']} - - hafs_regional_atm_ocn_wav: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_telescopic_2nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_multiple_4nests_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_specified_moving_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm_ocn: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_global_storm_following_1nest_atm: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - gnv1_nested: {'project':['daily'],'turnoff':['hercules','wcoss2','s4','noaacloud']} + - hafs_regional_atm: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_thompson_gfdlsf: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_ocn: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_wav: {'project':['regression'],'baseline': 'True'} + - hafs_regional_atm_ocn_wav: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_telescopic_2nests_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_multiple_4nests_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_specified_moving_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_global_storm_following_1nest_atm: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - gnv1_nested: {'project':['regression'],'baseline': 'True','turnoff':['hercules','wcoss2','s4','noaacloud']} hafsw_debug_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafsw_faster_intel: build: compiler: 'intel' option: '-DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_wav: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} - - hafs_regional_storm_following_1nest_atm_ocn_wav_inline: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav_inline: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafs_mom6w_intel: build: compiler: 'intel' option: '-DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON' turnoff: ['jet','noaacloud','s4'] tests: - - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_storm_following_1nest_atm_ocn_wav_mom6: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} hafs_all_intel: build: compiler: 'intel' option: '-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' turnoff: ['noaacloud'] tests: - - hafs_regional_docn: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_docn_oisst: {'project':['daily'],'turnoff':['noaacloud']} - - hafs_regional_datm_cdeps: {'project':['daily'],'turnoff':['jet','s4','noaacloud']} + - hafs_regional_docn: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_docn_oisst: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - hafs_regional_datm_cdeps: {'project':['regression'],'baseline': 'True','turnoff':['jet','s4','noaacloud']} datm_cdeps_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS' turnoff: ['wcoss2'] tests: - - datm_cdeps_control_cfsr: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_restart_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} - - datm_cdeps_control_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_iau_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_stochy_gefs: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_ciceC_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_bulk_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_bulk_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_mx025_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_mx025_gefs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_multiple_files_cfsr: {'project':['daily'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} - - datm_cdeps_3072x1536_cfsr: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} - - datm_cdeps_gfs: {'project':['daily'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_restart_cfsr: {'project':['regression'],'dependency':'datm_cdeps_control_cfsr','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_control_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_iau_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_stochy_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_ciceC_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_bulk_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_mx025_gefs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_multiple_files_cfsr: {'project':['regression'],'turnoff':['wcoss2','noaacloud']} + - datm_cdeps_3072x1536_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_gfs: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud']} datm_cdeps_debug_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS -DDEBUG=ON' turnoff: ['wcoss2','acorn','noaacloud'] tests: - - datm_cdeps_debug_cfsr: {'project':['daily'],'turnoff':['wcoss2','acorn','noaacloud']} + - datm_cdeps_debug_cfsr: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','acorn','noaacloud']} datm_cdeps_faster_intel: build: compiler: 'intel' option: '-DAPP=NG-GODAS -DFASTER=ON' turnoff: ['wcoss2'] tests: - - datm_cdeps_control_cfsr_faster: {'project':['daily'],'turnoff':['wcoss2']} + - datm_cdeps_control_cfsr_faster: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} datm_cdeps_land_intel: build: compiler: 'intel' option: '-DAPP=LND' turnoff: ['wcoss2'] tests: - - datm_cdeps_lnd_gswp3: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_lnd_era5: {'project':['daily'],'turnoff':['wcoss2']} - - datm_cdeps_lnd_era5_rst: {'project':['daily'],'dependency':'datm_cdeps_lnd_era5','turnoff':['wcoss2','noaacloud']} + - datm_cdeps_lnd_gswp3: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_lnd_era5: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} + - datm_cdeps_lnd_era5_rst: {'project':['regression'],'dependency':'datm_cdeps_lnd_era5','turnoff':['wcoss2','noaacloud']} +datm_cdeps_lm4_intel: + build: + compiler: 'intel' + option: '-DAPP=LND-LM4' + turnon: ['hera','orion','gaea'] + tests: + - datm_cdeps_lm4_gswp3: {'project':['regression'],'baseline': 'True','turnon':['hera','orion','gaea']} + - datm_cdeps_lm4_gswp3_rst: {'project':['regression'],'dependency':'datm_cdeps_lm4_gswp3','turnon':['hera','orion','gaea']} atm_ds2s_docn_pcice_intel: build: compiler: 'intel' option: '-DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' tests: - - atm_ds2s_docn_pcice: {'project':['daily'],'turnoff':['noaacloud']} + - atm_ds2s_docn_pcice: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atm_ds2s_docn_dice_intel: build: compiler: 'intel' - option: '-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnoff: ['wcoss2','acorn'] tests: - - atm_ds2s_docn_dice: {'project':['daily'],'dependency':'cpld_control_nowave_noaero_p8','turnoff':['noaacloud','wcoss2','acorn']} + - atm_ds2s_docn_dice: {'project':['regression'],'dependency':'cpld_control_nowave_noaero_p8','turnoff':['noaacloud','wcoss2','acorn']} atml_intel: build: compiler: 'intel' option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' tests: - - control_p8_atmlnd_sbs: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} - - control_p8_atmlnd: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} - - control_restart_p8_atmlnd: {'project':['daily'],'dependency':'control_p8_atmlnd','turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd_sbs: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} + - control_restart_p8_atmlnd: {'project':['regression'],'dependency':'control_p8_atmlnd','turnoff':['noaacloud','wcoss2']} atml_debug_intel: build: compiler: 'intel' option: '-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON' tests: - - control_p8_atmlnd_debug: {'project':['daily'],'turnoff':['noaacloud','wcoss2']} + - control_p8_atmlnd_debug: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud','wcoss2']} atmw_intel: build: compiler: 'intel' option: '-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' turnoff: ['wcoss2'] tests: - - atmwav_control_noaero_p8: {'project':['daily'],'turnoff':['wcoss2']} + - atmwav_control_noaero_p8: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2']} atmaero_intel: build: compiler: 'intel' option: '-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' turnoff: ['noaacloud'] tests: - - atmaero_control_p8: {'project':['daily'],'turnoff':['noaacloud']} - - atmaero_control_p8_rad: {'project':['daily'],'turnoff':['noaacloud']} - - atmaero_control_p8_rad_micro: {'project':['daily'],'turnoff':['noaacloud']} + - atmaero_control_p8: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - atmaero_control_p8_rad: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} + - atmaero_control_p8_rad_micro: {'project':['regression'],'baseline': 'True','turnoff':['noaacloud']} atmaq_debug_intel: build: compiler: 'intel' option: '-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' turnoff: ['jet','noaacloud','s4'] tests: - - regional_atmaq_debug: {'project':['daily'],'turnoff':['hera','jet','s4','noaacloud']} + - regional_atmaq_debug: {'project':['regression'],'baseline': 'True','turnoff':['hera','jet','s4','noaacloud']} +atm_fbh_intel: + build: + compiler: 'intel' + option: '-DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON' + turnoff: ['wcoss2','noaacloud','acorn'] + tests: + - cpld_regional_atm_fbh: {'project':['regression'],'baseline': 'True','turnoff':['wcoss2','noaacloud','acorn']} +s2swa_32bit_pdlib_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnon: ['gaea'] + tests: + - cpld_control_gfsv17: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_32bit_pdlib_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' + turnon: ['gaea'] + tests: + - cpld_debug_gfsv17: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_32bit_pdlib_sfs_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' + turnon: ['gaea'] + tests: + - cpld_control_sfs: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +s2swa_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1' + turnon: ['gaea'] + tests: + - cpld_control_p8: {'project':['regression'],'baseline': 'True','turnon':['gaea']} +rrfs_dyn32_phy32_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON' + turnon: ['hera'] + tests: + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera']} +rrfs_dyn64_phy32_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP -DCCPP_32BIT=ON' + turnon: ['hera'] + tests: + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera']} +hafsw_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' + turnon: ['orion'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn: {'project':['regression'],'baseline': 'True','turnon':['orion']} +hafsw_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON' + turnon: ['orion'] + tests: + - hafs_regional_storm_following_1nest_atm_ocn_debug: {'project':['regression'],'baseline': 'True','turnon':['orion']} +datm_cdeps_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=NG-GODAS' + turnon: ['hercules'] + tests: + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hercules']} +datm_cdeps_debug_intelllvm: + build: + compiler: 'intelllvm' + option: '-DAPP=NG-GODAS -DDEBUG=ON' + turnon: ['hercules'] + tests: + - datm_cdeps_debug_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hercules']} atm_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1' turnon: ['hera','hercules'] tests: - - control_c48: {'project':['daily'],'turnon':['hera','hercules']} - - control_stochy: {'project':['daily'],'turnon':['hera','hercules']} - - control_ras: {'project':['daily'],'turnon':['hera','hercules']} - - control_p8: {'project':['daily'],'turnon':['hera','hercules']} - - control_p8_ugwpv1: {'project':['daily'],'turnon':['hera','hercules']} - - control_flake: {'project':['daily'],'turnon':['hera','hercules']} + - 2020_CAPE: {'project':['test_case'], 'baseline': 'True','turnon':['hera','hercules']} + - baroclinic_wave: {'project':['test_case'], 'baseline': 'True','turnon':['hera','hercules']} + - control_c48: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_stochy: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_ras: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_p8_ugwpv1: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_flake: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} rrfs_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control: {'project':['daily'],'turnon':['hera','hercules']} - - rap_decomp: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_2threads: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_restart: {'project':['daily'],'dependency':'rap_control','turnon':['hera','hercules']} - - rap_sfcdiff: {'project':['daily'],'turnon':['hera','hercules']} - - rap_sfcdiff_decomp: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} - - rap_sfcdiff_restart: {'project':['daily'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} - - hrrr_control: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_2threads: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_decomp: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_restart: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - hrrr_control_restart_noqr: {'project':['daily'],'dependency':'hrrr_control','turnon':['hera','hercules']} - - rrfs_v1beta: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_decomp: {'project':['regression'],'turnon':['hera','hercules']} + - rap_2threads: {'project':['regression'],'turnon':['hera','hercules']} + - rap_restart: {'project':['regression'],'dependency':'rap_control','turnon':['hera','hercules']} + - rap_sfcdiff: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_sfcdiff_decomp: {'project':['regression'],'turnon':['hera','hercules']} + - rap_sfcdiff_restart: {'project':['regression'],'dependency':'rap_sfcdiff','turnon':['hera','hercules']} + - hrrr_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_noqr: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_2threads: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_decomp: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart: {'project':['regression'],'dependency':'hrrr_control','turnon':['hera','hercules']} + - hrrr_control_restart_noqr: {'project':['regression'],'dependency':'hrrr_control_noqr','turnon':['hera','hercules']} + - rrfs_v1beta: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} +csawmg_gnu: + build: + compiler: 'gnu' + option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras' + turnon: ['hera','hercules'] + tests: + - control_csawmg: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -D32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - control_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} - - regional_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_control_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_gf_debug: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_c3_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_diag_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_progcld_thompson_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rrfs_v1beta_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_ras_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_stochy_debug: {'project':['daily'],'turnon':['hera','hercules']} - - control_debug_p8: {'project':['daily'],'turnon':['hera','hercules']} - - rap_flake_debug: {'project':['daily'],'turnon':['hera','hercules']} - - rap_clm_lake_debug: {'project':['daily'],'turnon':['hera','hercules']} - - gnv1_c96_no_nest_debug: {'project':['daily'],'turnon':['hera','hercules']} + - control_diag_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - regional_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_control_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_gf_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_c3_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_diag_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_noah_sfcdiff_cires_ugwp_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_progcld_thompson_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rrfs_v1beta_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_ras_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_stochy_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - control_debug_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_flake_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_clm_lake_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - gnv1_c96_no_nest_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} wam_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - control_wam_debug: {'project':['daily'],'turnon':['hercules']} + - control_wam_debug: {'project':['regression'],'baseline': 'True','turnon':['hercules']} rrfs_dyn32_phy32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - rap_2threads_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_2threads_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_decomp_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - rap_restart_dyn32_phy32: {'project':['daily'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} - - hrrr_control_restart_dyn32_phy32: {'project':['daily'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} - - conus13km_control: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_2threads: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} - - conus13km_restart_mismatch: {'project':['daily'],'dependency':'conus13km_control','turnon':['hera','hercules']} + - rap_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - rap_2threads_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_2threads_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - hrrr_control_decomp_dyn32_phy32: {'project':['regression'],'turnon':['hera','hercules']} + - rap_restart_dyn32_phy32: {'project':['regression'],'dependency':'rap_control_dyn32_phy32','turnon':['hera','hercules']} + - hrrr_control_restart_dyn32_phy32: {'project':['regression'],'dependency':'hrrr_control_dyn32_phy32','turnon':['hera','hercules']} + - conus13km_control: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_2threads: {'project':['regression'],'dependency':'conus13km_control','turnon':['hera','hercules']} + - conus13km_restart_mismatch: {'project':['regression'],'dependency':'conus13km_control','turnon':['hera','hercules']} atm_dyn64_phy32_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_32BIT=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn64_phy32: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_dyn64_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn32_phy32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - rap_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - hrrr_control_debug_dyn32_phy32: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_debug: {'project':['daily'],'turnon':['hera','hercules']} - - conus13km_debug_qr: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} - - conus13km_debug_2threads: {'project':['daily'],'dependency':'conus13km_debug','turnon':['hera','hercules']} - - conus13km_radar_tten_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - hrrr_control_debug_dyn32_phy32: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} + - conus13km_debug_qr: {'project':['regression'],'turnon':['hera','hercules']} + - conus13km_debug_2threads: {'project':['regression'],'turnon':['hera','hercules']} + - conus13km_radar_tten_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} atm_dyn64_phy32_debug_gnu: build: compiler: 'gnu' option: '-DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - rap_control_dyn64_phy32_debug: {'project':['daily'],'turnon':['hera','hercules']} + - rap_control_dyn64_phy32_debug: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2swa_gnu: build: compiler: 'gnu' @@ -551,10 +631,10 @@ s2swa_gnu: s2s_gnu: build: compiler: 'gnu' - option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' + option: '-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1' turnon: ['hera','hercules'] tests: - - cpld_control_nowave_noaero_p8: {'project':['daily'],'turnon':['hera','hercules']} + - cpld_control_nowave_noaero_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2swa_debug_gnu: build: compiler: 'gnu' @@ -563,21 +643,21 @@ s2swa_debug_gnu: s2sw_pdlib_gnu: build: compiler: 'gnu' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON' turnon: ['hera','hercules'] tests: - - cpld_control_pdlib_p8: {'project':['daily'],'turnon':['hera','hercules']} + - cpld_control_pdlib_p8: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} s2sw_pdlib_debug_gnu: build: compiler: 'gnu' - option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON' + option: '-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON' turnon: ['hera','hercules'] tests: - - cpld_debug_pdlib_p8: {'project':['daily'],'turnon':['hercules']} + - cpld_debug_pdlib_p8: {'project':['regression'],'baseline': 'True','turnon':['hercules']} datm_cdeps_gnu: build: compiler: 'gnu' option: '-DAPP=NG-GODAS' turnon: ['hera','hercules'] tests: - - datm_cdeps_control_cfsr: {'project':['daily'],'turnon':['hera','hercules']} + - datm_cdeps_control_cfsr: {'project':['regression'],'baseline': 'True','turnon':['hera','hercules']} diff --git a/tests-dev/ufs_test_utils.py b/tests-dev/ufs_test_utils.py index dafefea0a5..1439d60fb9 100644 --- a/tests-dev/ufs_test_utils.py +++ b/tests-dev/ufs_test_utils.py @@ -16,7 +16,7 @@ def update_testyaml(input_list): new_yaml = {} yaml_item_count = None with open(UFS_TEST_YAML, 'r') as file_yaml: - rt_yaml = yaml.load(file_yaml)#, Loader=yaml.FullLoader) + rt_yaml = yaml.full_load(file_yaml) for apps, jobs in rt_yaml.items(): app_temp = None build_temp = None @@ -164,18 +164,25 @@ def create_yaml(): if line.startswith("RUN"): # RUN line build = parse_line(line) test = build[1] + baseline_creation = True machine = build[2] - baseline = f"'{build[3]}'" + baseline = build[3] depend = build[4] + if depend: + baseline_creation = False + if baseline and depend: + baseline_creation = False + if not baseline and not depend: + baseline_creation = False if (machine.find('-') != -1): off_machine = machine.replace("-", "").strip() off_machine = string_clean(off_machine) if (machine.find('+') != -1): on_machine = machine.replace("+", "").strip() on_machine = string_clean(on_machine) - tests = f" - {test}: {{'project':['daily']" - if baseline.isalnum(): - tests += f",'baseline': {baseline}" + tests = f" - {test}: {{'project':['daily']" + if baseline_creation: + tests += f",'baseline': 'True'" if depend and depend.strip(): tests += f",'dependency':'{depend}'" if not (off_machine is None): @@ -209,6 +216,15 @@ def sync_testscripts(): wfile.close() else: os.symlink(src_name, dst_name) + + dst_conf= dst +'/'+ 'build_conf' + src_conf= dst +'/'+ 'fv3_conf' + if os.path.exists(dst_conf): + for name in os.listdir(dst_conf): + src_name= src_conf +'/'+ name + dst_name= dst_conf +'/'+ name + shutil.copyfile(dst_name, src_name) + #subprocess.call(['chmod', '755', src_name]) def machine_check_off(machine_id, val): """Checks turned-off machine from YAML configuration diff --git a/tests/compile.sh b/tests/compile.sh index 99b9919f25..dd8f91ced1 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -63,7 +63,10 @@ case ${MACHINE_ID} in # Activate lua environment for gaea c5 if [[ ${MACHINE_ID} == gaea ]]; then module reset + elif [[ ${MACHINE_ID} == hercules ]]; then + module purge fi + # Load fv3 module module use "${PATHTR}/modulefiles" modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud index a85e084160..345f992b0f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_noaacloud +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -12,11 +12,14 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x -MACHINE_ID=noaacloud -module use $( pwd -P ) -module use /contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core -module load stack-intel/2021.3.0 stack-intel-oneapi-mpi/2021.3.0 -module load ufs-weather-model-env/unified-dev +export MACHINE_ID=noaacloud +source ./module-setup.sh +if [[ ! -d modulefiles ]]; then + mkdir modulefiles + mv *.lua modulefiles +fi +module use modulefiles +module load modules.fv3 module list set -x @@ -46,7 +49,8 @@ if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then false fi -srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe +srun --mpi=pmi2 --label -n @[TASKS] ${PWD}/fv3.exe + echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/RegressionTests_noaacloud.log b/tests/logs/RegressionTests_noaacloud.log index 2e84cdbe8c..06db26b502 100644 --- a/tests/logs/RegressionTests_noaacloud.log +++ b/tests/logs/RegressionTests_noaacloud.log @@ -1,991 +1,134 @@ -Wed Sep 13 18:53:13 UTC 2023 -Start Regression test +====START OF NOAACLOUD REGRESSION TESTING LOG==== -Testing UFSWM Hash: 181bed7dc89e0cf7792a108741ce12c0192b2245 -Testing With Submodule Hashes: +UFSWM hash used in testing: +e366ec57380a76f1da3be0364eb0473762a1cf9d + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 9b5825b7a6c0c07a3d936d0222917677209a07f0 FV3 (heads/develop) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 59c554a12df3a04e0402ce5f17bb32cbbac193b2 WW3 (6.07.1-341-g59c554a1) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 634 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 615 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 654 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 705 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Thu Sep 14 12:45:30 UTC 2023 -Start Regression test - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_noaero_p8_intel -Checking test 001 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 235.067933 - 0: The maximum resident set size (KB) = 1819976 - -Test 001 cpld_control_noaero_p8_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 194.486526 - 0: The maximum resident set size (KB) = 1780520 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_cfsr_intel -Checking test 003 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.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 = 140.720050 - 0: The maximum resident set size (KB) = 1254256 - -Test 003 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_gefs_intel -Checking test 004 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.725806 - 0: The maximum resident set size (KB) = 1137660 - -Test 004 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_iau_gefs_intel -Checking test 005 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 138.806743 - 0: The maximum resident set size (KB) = 1139260 - -Test 005 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_stochy_gefs_intel -Checking test 006 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 136.898247 - 0: The maximum resident set size (KB) = 1135528 - -Test 006 datm_cdeps_stochy_gefs_intel PASS - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/atmwav_control_noaero_p8_intel -Checking test 001 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 89.786822 - 0: The maximum resident set size (KB) = 1740024 - -Test 007 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/control_atmwav_intel -Checking test 002 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 80.879828 - 0: The maximum resident set size (KB) = 760744 - -Test 008 control_atmwav_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_intel -Checking test 003 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 570.936950 - 0: The maximum resident set size (KB) = 5440640 - -Test 009 regional_atmaq_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_faster_intel -Checking test 004 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 461.022740 - 0: The maximum resident set size (KB) = 5443032 - -Test 010 regional_atmaq_faster_intel PASS - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27559/control_c384_intel -Checking test 001 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 458.101623 - 0: The maximum resident set size (KB) = 1510240 - -Test 011 control_c384_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_latlon_intel -Checking test 001 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 116.591935 - 0: The maximum resident set size (KB) = 739644 - -Test 012 control_latlon_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_lndp_intel -Checking test 001 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 74.577322 - 0: The maximum resident set size (KB) = 744616 - -Test 013 control_lndp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29229/control_p8_lndp_intel -Checking test 001 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 270.886762 - 0: The maximum resident set size (KB) = 1711908 - -Test 014 control_p8_lndp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29775/control_stochy_intel -Checking test 001 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 79.032013 - 0: The maximum resident set size (KB) = 745464 - -Test 015 control_stochy_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_18036/regional_control_intel -Checking test 001 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 256.592547 - 0: The maximum resident set size (KB) = 1189296 - -Test 016 regional_control_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_noquilt_intel -Checking test 001 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 254.564088 - 0: The maximum resident set size (KB) = 1456300 - -Test 017 regional_noquilt_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_flake_intel -Checking test 002 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 263.335844 - 0: The maximum resident set size (KB) = 791788 - -Test 018 control_flake_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr4_intel -Checking test 002 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 118.289092 - 0: The maximum resident set size (KB) = 738932 - -Test 019 control_iovr4_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_wrtGauss_netcdf_parallel_intel -Checking test 002 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 118.455093 - 0: The maximum resident set size (KB) = 738948 - -Test 020 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_netcdf_parallel_intel -Checking test 002 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 315.339534 - 0: The maximum resident set size (KB) = 1189296 - -Test 021 regional_netcdf_parallel_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_c48_intel -Checking test 003 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 355.289641 -0: The maximum resident set size (KB) = 725172 - -Test 022 control_c48_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_CubedSphereGrid_intel -Checking test 003 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 156.608547 - 0: The maximum resident set size (KB) = 740744 - -Test 023 control_CubedSphereGrid_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr5_intel -Checking test 003 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 180.745637 - 0: The maximum resident set size (KB) = 740216 - -Test 024 control_iovr5_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_2dwrtdecomp_intel -Checking test 003 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 258.266724 - 0: The maximum resident set size (KB) = 1189112 - -Test 025 regional_2dwrtdecomp_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_wofs_intel -Checking test 004 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 317.986202 - 0: The maximum resident set size (KB) = 997696 - -Test 026 regional_wofs_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rap_control_intel -Checking test 005 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 376.232736 - 0: The maximum resident set size (KB) = 1313760 - -Test 027 rap_control_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_spp_sppt_shum_skeb_intel -Checking test 006 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 259.976109 - 0: The maximum resident set size (KB) = 1358860 - -Test 028 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1beta_intel -Checking test 007 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 367.928558 - 0: The maximum resident set size (KB) = 1275508 - -Test 029 rrfs_v1beta_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_intel -Checking test 008 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 451.901667 - 0: The maximum resident set size (KB) = 878300 - -Test 030 rrfs_v1nssl_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_nohailnoccn_intel -Checking test 009 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 434.283032 - 0: The maximum resident set size (KB) = 986664 - -Test 031 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_control_faster_intel -Checking test 010 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 236.396016 - 0: The maximum resident set size (KB) = 1188316 - -Test 032 regional_control_faster_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_intel -Checking test 011 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 217.543716 - 0: The maximum resident set size (KB) = 1363136 - -Test 033 hafs_regional_atm_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 012 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 332.106259 - 0: The maximum resident set size (KB) = 1696880 - -Test 034 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_ocn_intel -Checking test 013 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 342.702251 - 0: The maximum resident set size (KB) = 1492844 - -Test 035 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_wav_intel -Checking test 014 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 646.352130 - 0: The maximum resident set size (KB) = 1507564 - -Test 036 hafs_regional_atm_wav_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_control_cfsr_faster_intel -Checking test 015 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.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 = 140.076360 - 0: The maximum resident set size (KB) = 1268896 - -Test 037 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_lnd_gswp3_intel -Checking test 016 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 12.440630 - 0: The maximum resident set size (KB) = 401492 - -Test 038 datm_cdeps_lnd_gswp3_intel PASS + 49967251b83255bdac7ac2f9626d2714e8b83d07 FV3 (heads/develop) + e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) + b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) + 002a886eeb14979a6811f89e885d2968cbfd9b70 FV3/ccpp/physics (EP4-893-g002a886e) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20241031 +COMPARISON DIRECTORY: /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_1252814 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: root +* (-l) - USE CONFIG FILE: rt.conf +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [29:42, 29:43] ( 6 warnings 10 remarks ) + +PASS -- COMPILE 's2swa_intel' [29:06, 29:07] ( 6 warnings 10 remarks ) + +PASS -- COMPILE 's2sw_intel' [29:42, 29:43] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:37, 19:07](1922 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 12:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:34, 04:17](1974 MB) + +PASS -- COMPILE 's2s_intel' [12:38, 12:38] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [16:26, 15:04](2995 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:31, 11:31] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:16, 03:02](658 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:11, 02:58](1537 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:54](1541 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:08, 02:53](1536 MB) +PASS -- TEST 'control_c48_intel' [27:49, 27:38](1680 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [19:00, 18:57](815 MB) +PASS -- TEST 'control_c384_intel' [16:19, 14:15](2020 MB) +PASS -- TEST 'control_stochy_intel' [01:35, 01:26](615 MB) +PASS -- TEST 'control_lndp_intel' [01:34, 01:22](615 MB) +PASS -- TEST 'control_iovr4_intel' [02:15, 02:13](611 MB) +PASS -- TEST 'control_iovr5_intel' [02:24, 02:11](612 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:08, 06:03](1833 MB) +PASS -- TEST 'regional_control_intel' [06:15, 05:06](1034 MB) +PASS -- TEST 'regional_noquilt_intel' [06:07, 04:53](1343 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:57, 04:52](1037 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:04, 04:52](1036 MB) +PASS -- TEST 'regional_wofs_intel' [07:33, 06:17](1844 MB) + +PASS -- COMPILE 'rrfs_intel' [10:59, 10:58] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:11, 06:58](1030 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:13](1249 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:54, 06:50](1021 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:58, 08:45](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:26, 08:24](2001 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 11:08] ( 5 warnings 1 remarks ) +PASS -- TEST 'regional_control_faster_intel' [04:40, 04:30](1037 MB) + +PASS -- COMPILE 'hafsw_intel' [12:12, 12:12] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:31, 05:00](763 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:00, 05:29](1138 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:43, 06:39](810 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 25:45](835 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:53, 06:53] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:32, 02:29](113723201130 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:26, 02:23](993 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:31, 02:26](989 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:30, 02:27](990 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:56, 09:56] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 02:27](1131 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:03, 01:03] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:04, 01:09](284 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:30, 00:55](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:30, 10:30] ( 5 warnings 3 remarks ) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:11, 10:11] ( 6 warnings 1 remarks ) + +PASS -- COMPILE 'atml_intel' [11:35, 11:35] ( 13 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 885 warnings 2 remarks ) + +PASS -- COMPILE 'atmw_intel' [11:15, 11:15] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:06, 01:49](1862 MB) + +SYNOPSIS: +Starting Date/Time: 20241111 14:16:39 +Ending Date/Time: 20241111 15:29:32 +Total Time: 01h:12m:59s +Compiles Completed: 17/17 +Tests Completed: 38/38 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS -REGRESSION TEST WAS SUCCESSFUL -Wed Sep 13 20:40:38 UTC 2023 -Elapsed time: 01h:47m:26s. Have a nice day! +====END OF NOAACLOUD REGRESSION TESTING LOG==== diff --git a/tests/module-setup.sh b/tests/module-setup.sh index cd606178f6..5bbba3e465 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -47,7 +47,7 @@ elif [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]] ; then elif [[ ${MACHINE_ID} = derecho ]] ; then # We are on NCAR Derecho if ( ! eval module help > /dev/null 2>&1 ) ; then - source /usr/share/lmod/lmod/init/bash + source /glade/u/apps/derecho/23.09/spack/opt/spack/lmod/8.7.24/gcc/7.5.0/c645/lmod/lmod/init/bash fi module purge diff --git a/tests/rt.sh b/tests/rt.sh index 48a65436be..672c876e53 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -955,7 +955,7 @@ case ${MACHINE_ID} in module use /apps/modules/modulefiles if [[ "${ROCOTO:-false}" == true ]] ; then - module load rocoto/1.3.3 + module load rocoto/1.3.7 ROCOTO_SCHEDULER=slurm fi diff --git a/tests/test_changes.list b/tests/test_changes.list index 29080e02a9..8b13789179 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,10 +1 @@ -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -hafs_regional_storm_following_1nest_atm_ocn intelllvm -hafs_regional_storm_following_1nest_atm_ocn_debug intelllvm -datm_cdeps_control_cfsr intelllvm -datm_cdeps_debug_cfsr intelllvm +