diff --git a/.gitignore b/.gitignore index bf7d81b1c6..d29bb32d85 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,7 @@ tests/fv3_conf/compile_slurm.IN tests/fv3_conf/compile_qsub.IN tests/fv3_conf/fv3_slurm.IN tests/fv3_conf/fv3_qsub.IN +tests/rt_temp.conf build*.log* rocoto_workflow* fail_compile_* diff --git a/.gitmodules b/.gitmodules index d648fcb8f9..ab72b60a64 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,6 +46,10 @@ path = NOAHMP-interface/noahmp url = https://github.com/NOAA-EMC/noahmp branch = develop +[submodule "LM4-driver"] + path = LM4-driver + url = https://github.com/NOAA-GFDL/LM4-NUOPC-driver + branch = develop [submodule "fire_behavior"] path = fire_behavior url = https://github.com/NOAA-EMC/fire_behavior diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 635d9a100a..5e57a89cf5 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 635d9a100a736bd8d14ad091e879d5da6e4eb2bd +Subproject commit 5e57a89cf533fe98352bcfd1a464b1d50713274d diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index c04165ab09..b027e1d3e2 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -1,107 +1,118 @@ -### CICE Fortran compiler flags -if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") - if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") - endif() - set(CMAKE_Fortran_FLAGS_RELEASE "-O2") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) - set(CMAKE_Fortran_LINK_FLAGS "" ) -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") - set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") - set(CMAKE_Fortran_LINK_FLAGS "") -else() - message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") -endif() - -### CICE C compiler flags -if(CMAKE_C_COMPILER_ID MATCHES "GNU") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") - set(CMAKE_C_FLAGS_RELEASE "-O3") - set(CMAKE_C_FLAGS_DEBUG "-O0") - set(CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") - set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") - set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") - set( CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") - set( CMAKE_C_FLAGS_RELEASE "-O3" ) - set( CMAKE_C_FLAGS_DEBUG "-O0" ) - set( CMAKE_C_LINK_FLAGS "" ) -else() - message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") -endif() - -# Configuration Options -set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.") -set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") - -# Too many files to list, so include them via this file -include("cice_files.cmake") - -# Collect source files for library -list(APPEND lib_src_files - ${cice_shared_files} - ${cice_shared_files_c} - ${icepack_files} - ${cice_mpi_comm_files} - ${cice_nuopc_cmeps_driver_files} - ${cice_cdeps_inline_files}) - -list(APPEND _cice_defs FORTRANUNDERSCORE - coupled) - -# Select IO source files based on CICE_IO -if(CICE_IO MATCHES "NetCDF") - list(APPEND lib_src_files ${cice_netcdf_io_files}) - list(APPEND _cice_defs USE_NETCDF) -elseif(CICE_IO MATCHES "PIO") - list(APPEND lib_src_files ${cice_pio2_io_files}) - list(APPEND _cice_defs USE_NETCDF) -elseif(CICE_IO MATCHES "Binary") - list(APPEND lib_src_files ${cice_binary_io_files}) -endif() - -### Create target library and set PUBLIC interfaces on the library -add_library(cice STATIC ${lib_src_files}) -set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_compile_definitions(cice PUBLIC "${_cice_defs}") -target_include_directories(cice PUBLIC $ - $) -target_link_libraries(cice PUBLIC esmf) -if(CICE_IO MATCHES "^(NetCDF|PIO)$") - target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) - if(CICE_IO MATCHES "PIO") - target_link_libraries(cice PUBLIC PIO::PIO_Fortran) - endif() -endif() -if(OpenMP_Fortran_FOUND) - target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) -endif() - -# ice prescribed -add_dependencies(cice cdeps::cdeps) -target_compile_definitions(cice PUBLIC "DISABLE_FoX") -target_link_libraries(cice PUBLIC cdeps::cdeps) - -############################################################################### -### Install -############################################################################### - -install( - TARGETS cice - EXPORT cice-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - COMPONENT Library) - -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) - -install(EXPORT cice-config - DESTINATION lib/cmake) +### CICE Fortran compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") + if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") + endif() + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "" ) +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +### CICE C compiler flags +if(CMAKE_C_COMPILER_ID MATCHES "GNU") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") + set(CMAKE_C_FLAGS_RELEASE "-O3") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(Intel)$") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") + set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") + set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") + set( CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(IntelLLVM)$") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") + set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") + set( CMAKE_C_FLAGS_DEBUG "-O0") + set( CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") + set( CMAKE_C_FLAGS_RELEASE "-O3" ) + set( CMAKE_C_FLAGS_DEBUG "-O0" ) + set( CMAKE_C_LINK_FLAGS "" ) +else() + message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") +endif() + +# Configuration Options +set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.") +set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") + +# Too many files to list, so include them via this file +include("cice_files.cmake") + +# Collect source files for library +list(APPEND lib_src_files + ${cice_shared_files} + ${cice_shared_files_c} + ${icepack_files} + ${cice_mpi_comm_files} + ${cice_nuopc_cmeps_driver_files} + ${cice_cdeps_inline_files}) + +list(APPEND _cice_defs FORTRANUNDERSCORE + coupled) + +# Select IO source files based on CICE_IO +if(CICE_IO MATCHES "NetCDF") + list(APPEND lib_src_files ${cice_netcdf_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "PIO") + list(APPEND lib_src_files ${cice_pio2_io_files}) + list(APPEND _cice_defs USE_NETCDF) +elseif(CICE_IO MATCHES "Binary") + list(APPEND lib_src_files ${cice_binary_io_files}) +endif() + +### Create target library and set PUBLIC interfaces on the library +add_library(cice STATIC ${lib_src_files}) +set_target_properties(cice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_compile_definitions(cice PUBLIC "${_cice_defs}") +target_include_directories(cice PUBLIC $ + $) +target_link_libraries(cice PUBLIC esmf) +if(CICE_IO MATCHES "^(NetCDF|PIO)$") + target_link_libraries(cice PUBLIC NetCDF::NetCDF_Fortran) + if(CICE_IO MATCHES "PIO") + target_link_libraries(cice PUBLIC PIO::PIO_Fortran) + endif() +endif() +if(OpenMP_Fortran_FOUND) + target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) +endif() + +# ice prescribed +add_dependencies(cice cdeps::cdeps) +target_compile_definitions(cice PUBLIC "DISABLE_FoX") +target_link_libraries(cice PUBLIC cdeps::cdeps) + +############################################################################### +### Install +############################################################################### + +install( + TARGETS cice + EXPORT cice-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/CICE) + +install(EXPORT cice-config + DESTINATION lib/cmake) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index dc977bcadd..24e9eed4ff 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a +Subproject commit 24e9eed4ffe8138bef635c8f916f91b142595675 diff --git a/CMakeLists.txt b/CMakeLists.txt index 042b9cf9ec..702cf6a459 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML ATMF LND LND-LM4 S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -29,6 +29,7 @@ set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(HYCOM OFF CACHE BOOL "Enable HYCOM") set(CICE6 OFF CACHE BOOL "Enable CICE6") +set(LM4 OFF CACHE BOOL "Enable LM4") set(WW3 OFF CACHE BOOL "Enable WW3") set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(CMEPS OFF CACHE BOOL "Enable CMEPS") @@ -48,6 +49,7 @@ message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("HYCOM ............ ${HYCOM}") message("CICE6 ............ ${CICE6}") +message("LM4 .............. ${LM4}") message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("CDEPS ............ ${CDEPS}") @@ -157,7 +159,7 @@ if(FMS) elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|ATMF|ATML-LM4|LND-LM4|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -256,8 +258,13 @@ if(CDEPS) endif() ############################################################################### -### Land Components [NOAHMP] +### Land Components [NOAHMP and LM4] ############################################################################### + +if (LM4) + add_subdirectory(LM4-driver) +endif() + if(NOAHMP) add_subdirectory(NOAHMP-interface) endif() @@ -329,6 +336,12 @@ if(CICE6) list(APPEND _ufs_libs_public cice) endif() +if (LM4) + add_dependencies(ufs lm4) + list(APPEND _ufs_defs_private FRONT_LM4=lm4_cap_mod) + list(APPEND _ufs_libs_public lm4) +endif() + if(CMEPS) add_dependencies(ufs cmeps) list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) diff --git a/FV3 b/FV3 index a936459109..1aba87cb30 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a9364591091c836984a40107729720705847c195 +Subproject commit 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 diff --git a/HYCOM-interface/CMakeLists.txt b/HYCOM-interface/CMakeLists.txt index 3a5fcdaefa..7debdcbc61 100644 --- a/HYCOM-interface/CMakeLists.txt +++ b/HYCOM-interface/CMakeLists.txt @@ -8,7 +8,12 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_RELEASE "-O3") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") + set(CMAKE_Fortran_FLAGS "-g -traceback -mcmodel=small -r8 ${HYCOM_Extra_FORTRAN_FLAGS}") + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check all -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "-V ${CMAKE_Fortran_FLAGS} -static-intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") set(CMAKE_Fortran_FLAGS "-g -traceback -mcmodel=small -r8 ${HYCOM_Extra_FORTRAN_FLAGS}") set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check all -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") @@ -23,11 +28,16 @@ if(CMAKE_C_COMPILER_ID MATCHES "GNU") set(CMAKE_C_FLAGS_RELEASE "-O3") set(CMAKE_C_FLAGS_DEBUG "-O0") set(CMAKE_C_LINK_FLAGS "") -elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(Intel)$") set(CMAKE_C_FLAGS "-g -traceback -mcmodel=small ${HYCOM_Extra_C_FLAGS}") set(CMAKE_C_FLAGS_RELEASE "-O") set(CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") +elseif(CMAKE_C_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_C_FLAGS "-g -traceback -mcmodel=small ${HYCOM_Extra_C_FLAGS}") + set(CMAKE_C_FLAGS_RELEASE "-O") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") else() message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") endif() diff --git a/LM4-driver b/LM4-driver new file mode 160000 index 0000000000..c4d2337d86 --- /dev/null +++ b/LM4-driver @@ -0,0 +1 @@ +Subproject commit c4d2337d8607ec994b3cd61179eb974e0a237841 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index f3cf811ec2..57f9f7b8c9 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -6,13 +6,20 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") -elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(Intel)$") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^(IntelLLVM)$") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model precise") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") + set(CMAKE_Fortran_LINK_FLAGS "") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() diff --git a/README.md b/README.md index cd17b6afc2..45b6f6e2c1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ The top level directory structure groups source code and input files as follow: | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | | ```GOCART/``` | Contains GOCART aerosol model component | | ```HYCOM-interface/``` | Contains HYCOM ocean model component | +| ```LM4-driver/``` | Contains LM4 land component | | ```MOM6-interface/``` | Contains MOM6 ocean model component | | ```NOAHMP-interface/``` | Contains Noah-MP land model component | | ```WW3/``` | Contains community wave modeling framework WW3 | diff --git a/WW3 b/WW3 index 7f548c795a..c7004b658b 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 7f548c795a348bbb0fe4967dd25692c79036dc73 +Subproject commit c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd diff --git a/cmake/IntelLLVM.cmake b/cmake/IntelLLVM.cmake new file mode 100644 index 0000000000..963eaabace --- /dev/null +++ b/cmake/IntelLLVM.cmake @@ -0,0 +1,60 @@ +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -align array64byte -qno-opt-dynamic-align") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align -fp-model precise") + +# warning #5462: Global name too long. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462") + +# remark #7712: This variable has not been used. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712") + +# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291") + +# warning #5194: Source line truncated. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5194") + +if(CMAKE_Platform STREQUAL "derecho.intel") + set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries") +endif() + +if(NOT 32BIT) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -real-size 64") +endif() + +if(DEBUG) + add_definitions(-DDEBUG) + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug minimal -ftrapuv -init=snan,arrays") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") +else() + if(FASTER) + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model precise -assume buffered_stdout -fno-alias -align all -debug minimal -qoverride-limits -ftz") + set(CMAKE_C_FLAGS_RELEASE "-O3 -fp-model precise -debug minimal -qoverride-limits -ftz") + else() + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model precise") + set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") + endif() + if(AVX2) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx2") + elseif(SIMDMULTIARCH) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -mcmodel=medium") + elseif(AVX) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx-i") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx-i") + endif() +endif() + +if(APPLE) + # The linker on macOS does not include `common symbols` by default + # Passing the -c flag includes them and fixes an error with undefined symbols + set(CMAKE_Fortran_ARCHIVE_FINISH " -c ") +endif() + +# This must be last, to override all other optimization settings. +if(DISABLE_FMA) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") +endif() diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index a63601f62f..d3ab16b673 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF)$") +if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF|ATML-LM4)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) @@ -31,6 +31,10 @@ if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML|ATMF)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATML-LM4") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(LM4 ON CACHE BOOL "Enable LM4" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") elseif(APP MATCHES "ATMF") set(FIRE_BEHAVIOR ON CACHE BOOL "Enable Fire Behavior" FORCE) else() @@ -116,3 +120,10 @@ if(APP MATCHES "^(LND)$") set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() + +if(APP MATCHES "^(LND-LM4)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + set(LM4 ON CACHE BOOL "Enable LM4" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) +endif() diff --git a/cmake/configure_gaea.intelllvm.cmake b/cmake/configure_gaea.intelllvm.cmake new file mode 100644 index 0000000000..42e6486231 --- /dev/null +++ b/cmake/configure_gaea.intelllvm.cmake @@ -0,0 +1,2 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 72297ea4d7..852186292a 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -86,6 +86,8 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w - https://github.com/NOAA-EMC/AQM * - Noah-MP Land Surface Model (Noah-MP) - https://github.com/NOAA-EMC/noahmp + * - NOAA-GFDL Land Model (:term:`LM4`) + - In the table, the left-hand column contains a description of each repository, and the right-hand column shows the GitHub location of the authoritative component repositories. @@ -143,6 +145,9 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi │ └── HYCOM -------- HYCOM ocean model │ └── (NUOPC) -------- NUOPC HYCOM cap ├── LICENSE.md + ├── LM4-driver + │ ├── (LM4) -------- NUOPC NOAA-GFDL Land Model version 4 + │ └── (nuopc_cap) -------- NUOPC LM4 cap ├── modulefiles -------- system module files for supported HPC systems ├── MOM6-interface │ └── MOM6 diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index d43ca7943a..0d528a8d34 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -97,6 +97,9 @@ Glossary HYCOM The HYbrid Coordinate Ocean Model (`HYCOM `__) was developed to address known shortcomings in the vertical coordinate scheme of the Miami Isopycnic-Coordinate Ocean Model (MICOM). HYCOM is a primitive equation, general circulation model with vertical coordinates that remain isopycnic in the open, stratified ocean. However, the isopycnal vertical coordinates smoothly transition to z-coordinates in the weakly stratified upper-ocean mixed layer, to terrain-following sigma coordinates in shallow water regions, and back to z-level coordinates in very shallow water. The latter transition prevents layers from becoming too thin where the water is very shallow. See the `HYCOM User's Guide `__ for more information on using the model. The `HYCOM model code `__ is publicly available on GitHub. + LM4 + NUOPC NOAA-GFDL Land Model version 4 + LND land component The Noah Multi-Physics (Noah-MP) land surface model (LSM) is an open-source, community-developed LSM that has been incorporated into the UFS Weather Model (WM). It is the UFS WM's land component. diff --git a/driver/UFS.F90 b/driver/UFS.F90 index 26501a124b..2571dbd9ec 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -32,6 +32,8 @@ PROGRAM UFS ! !----------------------------------------------------------------------- ! + use, intrinsic :: iso_fortran_env, only : compiler_version + USE MPI USE ESMF ! @@ -127,9 +129,10 @@ PROGRAM UFS ! if (mype == 0) then call w3tagb('ufs-weather-model',0,0,0,'np23') + write(*,'(A,A)') 'Compiler version: ', compiler_version() // new_line("") call MPI_Get_library_version(library_version, resultlen, rc) - write(*,'(A,A)') 'MPI Library = ', library_version(1:resultlen) - write(*,'(A,I0,A,I0)')'MPI Version = ', mpi_version,'.',mpi_subversion + write(*,'(A,A)') 'MPI Library: ', library_version(1:resultlen) + write(*,'(A,I0,A,I0)')'MPI Version: ', mpi_version,'.',mpi_subversion endif ! !----------------------------------------------------------------------- diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 2b07308aa1..4cc52bfa03 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -79,6 +79,9 @@ MODULE UFSDriver #ifdef FRONT_NOAH use FRONT_NOAH, only: NOAH_SS => SetServices #endif +#ifdef FRONT_LM4 + use FRONT_LM4, only: LM4_SS => SetServices +#endif #ifdef FRONT_NOAHMP use FRONT_NOAHMP, only: NOAHMP_SS => SetServices #endif @@ -467,6 +470,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_LM4 + if (trim(model) == "lm4") then + call NUOPC_DriverAddComp(driver, trim(prefix), LM4_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_NOAHMP if (trim(model) == "noahmp") then call NUOPC_DriverAddComp(driver, trim(prefix), NOAHMP_SS, & diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index 4257dc8b3f..e259acb835 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,7 +2,7 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env-fms-2024.01/install/modulefiles/Core") load("stack-intel") load("stack-cray-mpich") @@ -17,9 +17,6 @@ remove_path("MODULEPATH", "/apps/prod/lmodules/INTEL_cray_mpich/19.1.3.304/cray- load("cmake") load("ufs_common") -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") -load("ifi/20230118-intel-19.1.3.304") - setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index a1c4fcfd18..062fa38449 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -11,7 +11,7 @@ local ufs_modules = { {["netcdf-fortran"] = "4.6.1"}, {["parallelio"] = "2.5.10"}, {["esmf"] = "8.6.0"}, - {["fms"] = "2023.04"}, + {["fms"] = "2024.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.5.1"}, diff --git a/modulefiles/ufs_derecho.gnu.lua b/modulefiles/ufs_derecho.gnu.lua index 4c21b69b0e..295b5560dc 100644 --- a/modulefiles/ufs_derecho.gnu.lua +++ b/modulefiles/ufs_derecho.gnu.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") unload("ncarcompilers") stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 1f3c823f99..f858670436 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") unload("ncarcompilers") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index fb2eb49a1b..592eb7461d 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,7 +5,7 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaea.intelllvm.lua new file mode 100644 index 0000000000..f91a712d27 --- /dev/null +++ b/modulefiles/ufs_gaea.intelllvm.lua @@ -0,0 +1,40 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_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)) + +unload("darshan-runtime") +unload("cray-libsci") + +unload("intel-classic/2023.1.0") +load("intel-oneapi/2023.1.0") + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaea.intelllvm") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 0b38f9c1f4..4e53200209 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -4,7 +4,7 @@ loads UFS Model prerequisites for Hera/GNU prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/fms-2024.01/install/modulefiles/Core") stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" load(pathJoin("stack-gcc", stack_gnu_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 7d3c3b4e27..feaa88e560 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hera.intelllvm.lua b/modulefiles/ufs_hera.intelllvm.lua new file mode 100644 index 0000000000..49e9f2b4a9 --- /dev/null +++ b/modulefiles/ufs_hera.intelllvm.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Hera/IntelLLVM +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +load("gnu") +load("intel/2023.2.0") + +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("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_FC", "ifx") + +setenv("CC", "mpicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpifc") +setenv("CMAKE_Platform", "hera.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index 6645dd3c80..035290a9c7 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index 8f16440134..455ea4d0f4 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.intelllvm.lua b/modulefiles/ufs_hercules.intelllvm.lua new file mode 100644 index 0000000000..5fb97a59fc --- /dev/null +++ b/modulefiles/ufs_hercules.intelllvm.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for Hercules/IntelLLVM +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_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("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hercules.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 8e54160be8..63dd53721a 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", " /contrib/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index 98397ef11c..ef03025c14 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -2,13 +2,19 @@ help([[ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) -prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +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.3.0" +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.3.0" +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.10.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) +unload("gnu") cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 51cc375df8..d6e25efad5 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -15,6 +15,9 @@ load(pathJoin("cmake", cmake_ver)) load("ufs_common") +-- HDF5 needed for LM4 +hdf5_ver=os.getenv("hdf5_ver") or "1.14.0" +load(pathJoin("hdf5", hdf5_ver)) nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" load(pathJoin("nccmp", nccmp_ver)) diff --git a/modulefiles/ufs_orion.intelllvm.lua b/modulefiles/ufs_orion.intelllvm.lua new file mode 100644 index 0000000000..81f6a07b52 --- /dev/null +++ b/modulefiles/ufs_orion.intelllvm.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for OrionLLVM/Intel +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_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("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "orion.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index c20b4869c7..7e56714ae0 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -31,9 +31,9 @@ local ufs_modules = { {["crtm"] = "2.4.0"}, {["g2"] = "3.5.1"}, {["g2tmpl"] = "1.13.0"}, - {["ip"] = "3.3.3"}, + {["ip"] = "4.0.0"}, {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, + {["w3emc"] = "2.12.0"}, {["gftl-shared"] = "1.6.1"}, -- {["mapl-C"] = "2.40.3"}, -- {["pnetcdf-C"] = "1.12.2"}, diff --git a/tests/bl_date.conf b/tests/bl_date.conf index a84c0c0cb8..9985917741 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240909 +export BL_DATE=20241001 diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 7f5deb31c8..140f500cce 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -40,7 +40,7 @@ branches[mom6]='dev/emc' pathes[mom6]='MOM6-interface/MOM6' urls[cice]='https://github.com/NOAA-EMC/CICE' -branches[cice]='emc/develop' +branches[cice]='develop' pathes[cice]='CICE-interface/CICE' urls[ww3]='https://github.com/NOAA-EMC/WW3' diff --git a/tests/compile.sh b/tests/compile.sh index 8ab0f60b82..99b9919f25 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -95,12 +95,14 @@ export SUITES set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" -fi +if [[ ${MACHINE_ID} != gaea ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm + if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" + fi -if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" + if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" + fi fi CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 9a8eb118ed..2aefd87186 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1069,7 +1069,7 @@ export_cice6() { export CICE_DUMPFREQ_N=1000 CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE )) export CICE_DIAGFREQ - export CICE_HISTFREQ_N="0, 0, 6, 1, 1" + export CICE_HISTFREQ_N="0, 0, 6, 0, 0" export CICE_HIST_AVG=.true. export CICE_HISTORY_DIR=./history/ export CICE_INCOND_DIR=./history/ @@ -1295,6 +1295,7 @@ export INPUT_NML=global_control.nml.IN export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export DIAG_TABLE=diag_table_cpld.IN export DIAG_TABLE_ADDITIONAL='' +export FIELD_TABLE_ADDITIONAL='' export FV3_RUN=cpld_control_run.IN export TILEDFIX=.false. diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index 619ca76905..717861beb3 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -6,6 +6,7 @@ #SBATCH --partition=@[PARTITION] #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=8G #SBATCH --time=60 #SBATCH --job-name="@[JBNME]" diff --git a/tests/fv3_conf/lm4_run.IN b/tests/fv3_conf/lm4_run.IN new file mode 100644 index 0000000000..0e6af37a21 --- /dev/null +++ b/tests/fv3_conf/lm4_run.IN @@ -0,0 +1,97 @@ +mkdir -p INPUT RESTART + + +if [[ $atm_model == 'datm' ]]; then +# need to make some adjustments for LM4's grid file requirements +# assume LNDRES is defined + + if [[ $LNDRES == 'C96' ]]; then + FV3_DIR=FV3_input_data + else + FV3_DIR=FV3_input_data${LNDRES#C} + fi + + ## get these if don't already have: + rsync -arv @[INPUTDATA_ROOT]/CPL_FIX/a@[LNDRES]o@[OCNRES]/grid_spec.nc ./INPUT + rsync -arv @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/@[LNDRES]_grid*.nc ./INPUT + rsync -arv @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[LNDRES]_mosaic.nc + rsync -arv @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT + +elif [[ $atm_model == 'fv3' ]]; then + # assume ATMRES is defined + if [[ $ATMRES == 'C96' ]]; then + FV3_DIR=FV3_input_data + else + FV3_DIR=FV3_input_data${ATMRES#C} + fi + +fi + + + +## LM4 + +# out of the box, LM4 expects aXl referenced in grid_spec.nc for grid land area. Include them for now. + +# check if ATMRES or LNDRES is equal to C96: +if [[ $ATMRES == 'C96' || $LNDRES == 'C96' ]]; then + tar -xf @[INPUTDATA_LM4]/c96_grid/c96_OM4_025_grid_No_mg_drag_v20160808.tar -C ./INPUT/ \ + --wildcards "C96_mosaic_tile?XC96_mosaic_tile?.nc" + + tar -xvf @[INPUTDATA_LM4]/c96_LM4/c96_topo_rough_land.nc.tar -C ./INPUT/ +else + echo 'Only setup for C96 is supported' +fi + +ln -s @[INPUTDATA_LM4]/common_LM4/biodata.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/cover_type.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/geohydrology.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/geohydrology_table_2a2n.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/ground_type.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/landuse.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/soil_brdf.nc ./INPUT/ +ln -s @[INPUTDATA_LM4]/common_LM4/soil_type_hwsd_5minute.nc ./INPUT/soil_type.nc + + +cd INPUT +rsync -arv @[INPUTDATA_ROOT]/DATM_GSWP3_input_data/. . +cd - + +SUFFIX=${RT_SUFFIX} +# restart +if [ $WARM_START = .true. ]; then + # # NoahMP restart files + # cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + + # LM4 restart files + # expected checkpoint restarts are named like: YYYYMMDD.HHMMSS.*.res.tile?.nc + + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.landuse.res ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.cana.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.glac.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.lake.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.land.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.snow.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.soil.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.vegn1.res.tile*.nc ./INPUT/ + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${LM4_RESTART_PREFIX}.vegn2.res.tile*.nc ./INPUT/ + + # remove datestamp + rename ${LM4_RESTART_PREFIX}. "" INPUT/${LM4_RESTART_PREFIX}.*.res* + + # CMEPS restart and pointer files + RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + ls -1 "RESTART/${RFILE1}">rpointer.cpl + + # CDEPS restart and pointer files + RFILE2=ufs.cpld.datm.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE2} RESTART/. + ls -1 "RESTART/${RFILE2}">rpointer.atm +fi + + + + + + diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 6edef2c7e4..a5ac539a95 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Sep 19 10:34:04 UTC 2024 +Tue Oct 8 22:47:32 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.407527 - 0: The maximum resident set size (KB) = 1441812 + 0: The total amount of wall time = 311.645970 + 0: The maximum resident set size (KB) = 1440152 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1009.311079 - 0: The maximum resident set size (KB) = 1431700 + 0: The total amount of wall time = 940.211866 + 0: The maximum resident set size (KB) = 1423792 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 275.353504 - 0: The maximum resident set size (KB) = 1438552 + 0: The total amount of wall time = 274.188787 + 0: The maximum resident set size (KB) = 1418424 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 270.526810 - 0: The maximum resident set size (KB) = 1437944 + 0: The total amount of wall time = 301.161679 + 0: The maximum resident set size (KB) = 1416756 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 272.184977 - 0: The maximum resident set size (KB) = 1441260 + 0: The total amount of wall time = 276.271987 + 0: The maximum resident set size (KB) = 1431172 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.007924 - 0: The maximum resident set size (KB) = 1441600 + 0: The total amount of wall time = 276.492714 + 0: The maximum resident set size (KB) = 1430992 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3253678/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3789169/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 270.263073 - 0: The maximum resident set size (KB) = 1429548 + 0: The total amount of wall time = 275.115479 + 0: The maximum resident set size (KB) = 1421612 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 11:49:05 UTC 2024 -Elapsed time: 01h:15m:02s. Have a nice day! +Wed Oct 9 00:04:19 UTC 2024 +Elapsed time: 01h:16m:47s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 409bb4bba4..6bfe7ee77f 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Sep 19 09:02:15 UTC 2024 +Wed Oct 9 14:47:17 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2883046/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 2403.226127 - 0: The maximum resident set size (KB) = 1541736 + 0: The total amount of wall time = 2410.412873 + 0: The maximum resident set size (KB) = 1500288 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2883046/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 652.724686 - 0: The maximum resident set size (KB) = 1530376 + 0: The total amount of wall time = 899.090979 + 0: The maximum resident set size (KB) = 1504600 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2883046/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3476944/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 668.735610 - 0: The maximum resident set size (KB) = 1518632 + 0: The total amount of wall time = 721.439080 + 0: The maximum resident set size (KB) = 1504092 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 10:34:03 UTC 2024 -Elapsed time: 01h:31m:49s. Have a nice day! +Wed Oct 9 16:24:56 UTC 2024 +Elapsed time: 01h:37m:39s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 7c10cbd922..1c8759ae87 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Sep 19 06:26:19 UTC 2024 +Wed Oct 9 12:02:03 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3951212/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1487.475517 - 0: The maximum resident set size (KB) = 783772 + 0: The total amount of wall time = 1488.179880 + 0: The maximum resident set size (KB) = 746240 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3951212/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2239.533660 - 0: The maximum resident set size (KB) = 711488 + 0: The total amount of wall time = 2215.405761 + 0: The maximum resident set size (KB) = 739208 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3951212/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2256.857916 - 0: The maximum resident set size (KB) = 744788 + 0: The total amount of wall time = 2326.131971 + 0: The maximum resident set size (KB) = 730172 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3951212/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2513112/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2251.197250 - 0: The maximum resident set size (KB) = 721196 + 0: The total amount of wall time = 2180.030448 + 0: The maximum resident set size (KB) = 722712 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 19 09:02:14 UTC 2024 -Elapsed time: 02h:35m:56s. Have a nice day! +Wed Oct 9 14:37:25 UTC 2024 +Elapsed time: 02h:35m:23s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2eca4ed07d..7e1bada843 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,31 +1,33 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3bd67a093b800f028092d252373abe1b7a7602b +73c9d3c08bd18fa47227bd6c2ccb055397ceba95 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,267 +38,267 @@ 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1860289 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1459763 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:26, 10:15] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:44, 03:29](3362 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 15:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:39, 03:45](2154 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:27, 04:23](2185 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:24, 04:10](1300 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 03:22](2258 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:31, 16:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [54:39, 01:57](2154 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:52] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [04:50, 04:14](2242 MB) - -PASS -- COMPILE 's2swa_intel' [12:26, 10:36] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [59:43, 02:43](3366 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:43, 03:15](3385 MB) -PASS -- TEST 'cpld_restart_p8_intel' [47:36, 02:44](3305 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [59:43, 02:42](3405 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [47:36, 02:21](3322 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [59:43, 03:21](3676 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [59:43, 02:46](3384 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [59:44, 03:32](3511 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:43, 02:52](3387 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [59:43, 03:05](3311 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 09:53] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [00:44, 02:40](2078 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [00:44, 02:57](2091 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [00:44, 03:11](2056 MB) - -PASS -- COMPILE 's2s_intel' [13:28, 11:55] ( 2 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [58:40, 02:39](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [58:40, 02:42](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [51:06, 02:51](2309 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:40] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [54:37, 03:02](3388 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:44] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:37, 02:08](2167 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:51, 02:24](1339 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:00, 02:40](2288 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:33] ( 1524 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:29, 02:06](2280 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:08] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [50:20, 02:04](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [50:20, 01:57](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:20, 02:04](1593 MB) -PASS -- TEST 'control_latlon_intel' [50:20, 01:26](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:20, 01:54](1607 MB) -PASS -- TEST 'control_c48_intel' [50:19, 02:10](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [50:19, 02:01](713 MB) -PASS -- TEST 'control_c192_intel' [50:20, 02:18](1853 MB) -PASS -- TEST 'control_c384_intel' [50:24, 02:45](3276 MB) -PASS -- TEST 'control_c384gdas_intel' [50:24, 04:01](2445 MB) -PASS -- TEST 'control_stochy_intel' [50:20, 02:07](666 MB) -PASS -- TEST 'control_stochy_restart_intel' [45:48, 01:32](465 MB) -PASS -- TEST 'control_lndp_intel' [49:37, 01:57](644 MB) -PASS -- TEST 'control_iovr4_intel' [48:44, 01:22](662 MB) -PASS -- TEST 'control_iovr5_intel' [48:22, 01:34](643 MB) -PASS -- TEST 'control_p8_intel' [47:37, 02:53](1877 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [47:36, 03:27](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [47:22, 02:56](1903 MB) -PASS -- TEST 'control_restart_p8_intel' [28:00, 03:35](1033 MB) -PASS -- TEST 'control_noqr_p8_intel' [45:34, 02:04](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [25:57, 02:52](1026 MB) -PASS -- TEST 'control_decomp_p8_intel' [45:21, 02:58](1875 MB) -PASS -- TEST 'control_2threads_p8_intel' [43:44, 02:57](1986 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:18, 01:30](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [41:56, 02:53](1958 MB) -PASS -- TEST 'control_p8_mynn_intel' [40:21, 02:50](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [40:11, 03:24](1884 MB) -PASS -- TEST 'regional_control_intel' [39:27, 01:23](859 MB) -PASS -- TEST 'regional_restart_intel' [22:23, 01:57](849 MB) -PASS -- TEST 'regional_decomp_intel' [39:18, 01:35](863 MB) -PASS -- TEST 'regional_2threads_intel' [38:03, 01:37](1252 MB) -PASS -- TEST 'regional_noquilt_intel' [35:53, 01:41](1194 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [34:27, 01:12](869 MB) -PASS -- TEST 'regional_wofs_intel' [34:15, 01:44](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:28] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [33:22, 03:42](1049 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:35, 01:54](1732 MB) -PASS -- TEST 'rap_decomp_intel' [29:45, 03:06](1049 MB) -PASS -- TEST 'rap_2threads_intel' [29:03, 03:16](1131 MB) -PASS -- TEST 'rap_restart_intel' [16:53, 03:25](863 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:00, 03:43](1030 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:47, 02:42](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [15:32, 03:36](863 MB) -PASS -- TEST 'hrrr_control_intel' [26:45, 04:10](1041 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [26:36, 03:45](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [26:17, 03:13](1269 MB) -PASS -- TEST 'hrrr_control_restart_intel' [16:05, 01:52](815 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:36, 03:07](1042 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [25:34, 02:22](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:37, 01:32](1977 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:13] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [23:51, 01:23](1000 MB) -PASS -- TEST 'control_ras_intel' [23:51, 01:59](682 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:06, 02:06](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:33, 08:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [22:14, 02:50](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [22:07, 01:54](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:30, 07:18] ( 883 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:56, 01:43](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:20, 01:55](1657 MB) -PASS -- TEST 'control_stochy_debug_intel' [21:17, 02:07](835 MB) -PASS -- TEST 'control_lndp_debug_intel' [21:11, 02:08](852 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:36, 01:27](1137 MB) -PASS -- TEST 'control_ras_debug_intel' [18:13, 01:55](839 MB) -PASS -- TEST 'control_diag_debug_intel' [17:01, 02:10](1711 MB) -PASS -- TEST 'control_debug_p8_intel' [16:53, 02:12](1920 MB) -PASS -- TEST 'regional_debug_intel' [16:30, 01:59](937 MB) -PASS -- TEST 'rap_control_debug_intel' [16:29, 01:24](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:05, 01:41](1228 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:17, 01:37](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:08, 02:01](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:01, 02:00](1232 MB) -PASS -- TEST 'rap_diag_debug_intel' [14:18, 02:30](1316 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:12, 01:35](1216 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:51, 01:47](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [13:44, 01:58](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:38, 02:03](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:12, 01:59](1209 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:55, 01:23](1215 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 01:23](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [11:55, 01:43](1227 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:47, 01:28](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:41, 01:26](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:32, 03:19](1239 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:24, 04:49] ( 838 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:59, 02:16](1742 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:27, 08:12] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:57, 01:52](1612 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:07, 03:26](925 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:07, 04:24](923 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:06, 03:35](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:57, 04:33](1122 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:29, 04:24](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:44, 03:05](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:57, 02:06](783 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 08:19] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:44, 01:51](1106 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:31, 01:23](1468 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:20, 01:34](947 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [19:33, 08:18] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 01:51](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:26, 04:48] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 01:27](1092 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 02:05](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [05:38, 01:30](1185 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [05:33, 01:31](869 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [05:29, 01:31](1546 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:20, 01:38](1282 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:28, 04:43] ( 786 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 01:32](1115 MB) - -PASS -- COMPILE 'hafsw_intel' [18:32, 09:35] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:13, 02:58](1803 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:07, 01:31](2153 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [04:37, 02:45](1279 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [04:34, 02:28](1434 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:22, 02:31](1462 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:43, 01:53](1002 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:07, 02:55](1336 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [01:13, 02:37](1200 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:25, 04:06](2123 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [00:04, 02:30](1037 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:37, 02:14](1039 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:35, 02:24](1668 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:05, 01:59](1226 MB) -PASS -- TEST 'gnv1_nested_intel' [58:57, 04:22](1953 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:30, 05:22] ( 1466 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [58:26, 02:24](1722 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:17] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:47, 02:45](1713 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:51, 02:35](1892 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:19] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:54, 02:39](1893 MB) - -PASS -- COMPILE 'hafs_all_intel' [59:15, 09:05] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:56, 02:46](1275 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:56, 02:46](1256 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:54, 01:33](898 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [00:17, 09:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:48, 01:40](768 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [32:20, 01:24](760 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:48, 01:37](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [39:48, 01:31](651 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [39:48, 01:51](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [39:48, 01:31](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [39:48, 01:58](771 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:48, 01:40](648 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:49, 02:17](870 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:49, 02:06](856 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:48, 01:33](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [39:08, 01:33](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [39:06, 02:14](2036 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:34, 09:23] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [22:30, 01:25](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:26, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:28, 01:46](678 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:28, 01:43](815 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [26:56, 02:05](815 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:32, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:19, 02:40](2012 MB) - -PASS -- COMPILE 'atml_intel' [12:31, 09:16] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:33, 03:08](2263 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [22:33, 03:10](2259 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [13:04, 01:53](1409 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:23, 05:29] ( 881 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [25:23, 03:05](2298 MB) - -PASS -- COMPILE 'atmw_intel' [08:27, 08:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [22:17, 03:31](1992 MB) - -PASS -- COMPILE 'atmaero_intel' [06:24, 08:42] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:21, 02:52](3282 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [22:21, 03:04](3055 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:21, 03:06](3048 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [23:37, 04:48] ( 883 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:15, 02:27](4881 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:35, 19:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:38, 02:55](3190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [01:47, 03:02](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [36:34, 04:08](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [36:10, 04:01](1074 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:48, 03:49](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [31:45, 30:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [41:40, 02:24](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [29:44, 28:19] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [45:30, 03:51](1948 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 09:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [03:48, 02:38](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [03:48, 02:56](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [51:49, 02:22](3153 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [03:48, 02:43](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [51:49, 02:52](3170 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [03:48, 02:18](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [03:48, 02:51](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [03:49, 03:01](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [03:48, 03:04](3225 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [03:48, 03:07](3202 MB) + +PASS -- COMPILE 's2sw_intel' [30:47, 29:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [44:02, 02:08](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [43:38, 02:21](1977 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:25, 09:13] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:48, 02:19](1967 MB) + +PASS -- COMPILE 's2s_intel' [20:36, 18:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [54:36, 01:55](2882 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [54:36, 02:31](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [49:09, 02:39](2304 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [57:41, 03:21](3226 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 10:56] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:46, 02:01](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:40, 01:51](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:54, 02:36](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:30] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:29, 02:21](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [53:24, 02:10](661 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:24, 02:13](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [53:24, 01:46](1569 MB) +PASS -- TEST 'control_latlon_intel' [53:24, 02:07](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [53:24, 01:56](1560 MB) +PASS -- TEST 'control_c48_intel' [53:23, 01:57](1579 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [53:23, 01:42](703 MB) +PASS -- TEST 'control_c192_intel' [53:24, 01:43](1683 MB) +PASS -- TEST 'control_c384_intel' [53:28, 03:23](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [53:28, 03:53](1167 MB) +PASS -- TEST 'control_stochy_intel' [53:24, 01:29](616 MB) +PASS -- TEST 'control_stochy_restart_intel' [49:51, 01:53](422 MB) +PASS -- TEST 'control_lndp_intel' [53:24, 01:28](619 MB) +PASS -- TEST 'control_iovr4_intel' [53:24, 01:41](611 MB) +PASS -- TEST 'control_iovr5_intel' [53:24, 02:17](613 MB) +PASS -- TEST 'control_p8_intel' [53:24, 02:27](1851 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [52:52, 03:36](1850 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [52:52, 03:24](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [34:00, 02:38](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [51:49, 03:02](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [30:31, 03:19](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [51:35, 02:22](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [51:34, 02:39](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [49:52, 01:50](1850 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [48:48, 03:12](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [46:08, 02:46](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [36:35, 03:26](1853 MB) +PASS -- TEST 'regional_control_intel' [35:14, 01:29](853 MB) +PASS -- TEST 'regional_restart_intel' [10:59, 01:14](855 MB) +PASS -- TEST 'regional_decomp_intel' [34:57, 01:15](858 MB) +PASS -- TEST 'regional_2threads_intel' [34:08, 01:41](986 MB) +PASS -- TEST 'regional_noquilt_intel' [33:59, 01:38](1186 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [33:44, 01:48](856 MB) +PASS -- TEST 'regional_wofs_intel' [33:38, 02:07](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [13:26, 11:28] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [33:05, 02:55](1002 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:12, 02:12](1139 MB) +PASS -- TEST 'rap_decomp_intel' [30:31, 02:27](1002 MB) +PASS -- TEST 'rap_2threads_intel' [30:31, 03:03](1082 MB) +PASS -- TEST 'rap_restart_intel' [18:54, 03:35](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [30:09, 03:09](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:15, 03:00](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [17:45, 03:23](883 MB) +PASS -- TEST 'hrrr_control_intel' [28:48, 04:05](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [28:43, 03:45](992 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [28:16, 03:15](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [17:07, 02:01](829 MB) +PASS -- TEST 'rrfs_v1beta_intel' [27:44, 03:04](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [27:41, 01:58](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:23, 01:37](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [12:25, 10:49] +PASS -- TEST 'control_csawmg_intel' [26:18, 01:24](950 MB) +PASS -- TEST 'control_ras_intel' [26:14, 01:38](653 MB) + +PASS -- COMPILE 'wam_intel' [20:35, 16:53] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [25:44, 01:15](1645 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [24:44, 03:30](1850 MB) +PASS -- TEST 'regional_control_faster_intel' [22:54, 01:21](846 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:31, 14:39] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:50, 01:54](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:31, 02:20](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:10, 01:23](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [18:57, 01:40](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:55, 01:43](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [18:55, 01:39](810 MB) +PASS -- TEST 'control_diag_debug_intel' [17:07, 02:22](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [16:38, 01:56](1904 MB) +PASS -- TEST 'regional_debug_intel' [16:08, 01:56](919 MB) +PASS -- TEST 'rap_control_debug_intel' [15:53, 01:46](1185 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:42, 01:51](1178 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:27, 02:16](1189 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [15:21, 01:19](1185 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:22, 02:11](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:21, 02:24](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [14:09, 02:00](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:35, 01:27](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:24, 01:48](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:24, 01:40](1185 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:19, 01:30](1182 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:59, 01:22](1184 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:43, 02:11](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:02, 01:23](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:55, 02:02](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:52, 01:54](1185 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:48, 04:00](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:24, 09:16] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:42, 01:22](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:26, 11:45] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:39, 02:04](1006 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:32, 03:30](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:27, 04:07](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:01, 03:07](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:46, 03:42](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:08, 03:27](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:40, 03:40](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [59:12, 01:14](758 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:05, 07:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [00:16, 02:01](1077 MB) +PASS -- TEST 'conus13km_2threads_intel' [55:06, 01:21](1060 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [55:05, 01:41](954 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:15, 12:24] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:04, 02:15](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:03, 05:26] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:26, 01:58](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:26, 02:02](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [58:26, 01:55](1169 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [58:26, 01:33](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [58:27, 02:17](1131 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:26, 01:43](1213 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [46:00, 04:51] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [59:01, 01:42](1089 MB) + +PASS -- COMPILE 'hafsw_intel' [52:08, 10:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [52:21, 02:25](687 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [52:21, 01:44](1031 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [52:19, 03:09](731 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [52:19, 03:09](764 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [52:20, 02:32](937 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [52:19, 02:22](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [52:20, 03:21](479 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [52:20, 02:03](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [52:23, 03:19](446 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [52:19, 01:52](495 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [52:19, 01:45](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [52:21, 02:30](558 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [52:20, 01:49](409 MB) +PASS -- TEST 'gnv1_nested_intel' [52:18, 04:09](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [53:08, 12:24] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [50:22, 02:35](624 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [48:05, 08:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [54:11, 02:34](704 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [54:11, 02:07](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [50:07, 11:46] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [49:53, 02:57](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [47:05, 10:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [51:02, 02:59](728 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [50:59, 02:53](704 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:52, 02:03](902 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [54:11, 18:19] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [41:32, 02:08](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [36:07, 01:17](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [41:32, 02:01](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [40:12, 02:01](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [40:04, 01:57](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [39:05, 01:33](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [36:30, 02:11](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [36:20, 01:33](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [35:55, 02:19](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [35:27, 02:18](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:24, 01:54](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:04, 01:20](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [32:47, 01:46](2032 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:29, 14:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [30:02, 01:56](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:20, 05:49] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [51:42, 01:40](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [51:28, 01:33](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [27:35, 02:04](449 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:26, 11:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [45:00, 02:47](1914 MB) + +PASS -- COMPILE 'atml_intel' [14:28, 12:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:02, 03:08](1885 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [28:52, 03:02](1885 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [19:27, 02:06](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:21, 06:06] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [43:58, 02:57](1928 MB) + +PASS -- COMPILE 'atmw_intel' [12:26, 10:45] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:43, 03:43](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [19:34, 08:12] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [27:50, 02:34](3114 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [27:21, 02:28](2998 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:12, 02:28](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [34:51, 04:25] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [16:11, 02:29](4524 MB) SYNOPSIS: -Starting Date/Time: 20240918 13:47:32 -Ending Date/Time: 20240918 16:01:35 -Total Time: 02h:14m:30s +Starting Date/Time: 20241009 19:44:28 +Ending Date/Time: 20241009 22:11:48 +Total Time: 02h:27m:48s Compiles Completed: 37/37 Tests Completed: 176/176 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 68df2e6d28..dcbb03e63a 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,31 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -4ac63b06501f964ea8feb3cb82fe4bd948d23093 +7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) + bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) + b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -37,286 +37,285 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_33930 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_36907 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [24:23, 23:06] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 06:38](3199 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:24, 25:17] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:48, 14:50](1911 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:08, 16:15](1948 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:16, 08:06](1076 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 16:39](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:24, 24:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:26, 14:26](1905 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:19, 13:22] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:43](1946 MB) - -PASS -- COMPILE 's2swa_intel' [24:23, 22:39] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:46, 08:31](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 08:20](3236 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:28, 05:01](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:44, 08:21](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:29, 04:58](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 07:48](3746 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:37, 08:19](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:23, 06:38](3530 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:55, 08:15](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:41, 09:52](3818 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:11, 06:53](3616 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:38, 09:54](4515 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:21, 06:50](4668 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:11, 06:09](3210 MB) - -PASS -- COMPILE 's2sw_intel' [23:22, 20:57] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1921 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:54, 08:07](1976 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:20, 13:19] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:49, 12:41](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:19, 12:27] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 08:47](1953 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:21, 17:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:15](1987 MB) - -PASS -- COMPILE 's2s_intel' [19:21, 17:46] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:54](2881 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 02:31](2890 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:36, 01:39](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:20, 25:14] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:37, 08:13](3238 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [25:19, 23:47] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 14:53](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:01, 08:01](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 16:55](1903 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:16, 12:21] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:38](1948 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:17, 14:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:34, 03:27](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:09, 02:43](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:29, 02:47](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:06, 02:42](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:45](1562 MB) -PASS -- TEST 'control_c48_intel' [12:05, 09:14](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:44, 05:15](712 MB) -PASS -- TEST 'control_c192_intel' [14:01, 10:00](1694 MB) -PASS -- TEST 'control_c384_intel' [18:42, 11:26](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [18:27, 07:18](1172 MB) -PASS -- TEST 'control_stochy_intel' [03:46, 01:26](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:49, 00:53](437 MB) -PASS -- TEST 'control_lndp_intel' [03:42, 01:27](625 MB) -PASS -- TEST 'control_iovr4_intel' [04:49, 02:12](617 MB) -PASS -- TEST 'control_iovr5_intel' [04:43, 02:07](622 MB) -PASS -- TEST 'control_p8_intel' [06:33, 03:35](1855 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:32, 03:06](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:33, 03:38](1850 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 02:26](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:42](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:28](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:53, 03:53](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:47, 03:32](1936 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:45, 06:04](1858 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:54, 04:01](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:55, 03:26](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [06:52, 03:40](1861 MB) -PASS -- TEST 'regional_control_intel' [08:08, 04:56](858 MB) -PASS -- TEST 'regional_restart_intel' [05:56, 03:01](863 MB) -PASS -- TEST 'regional_decomp_intel' [08:05, 05:11](859 MB) -PASS -- TEST 'regional_noquilt_intel' [08:06, 04:52](1191 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 04:56](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:59](863 MB) -PASS -- TEST 'regional_wofs_intel' [07:52, 05:41](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [15:16, 13:31] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:25, 06:14](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:48, 03:52](1154 MB) -PASS -- TEST 'rap_decomp_intel' [09:25, 06:26](1001 MB) -PASS -- TEST 'rap_2threads_intel' [09:25, 05:46](1093 MB) -PASS -- TEST 'rap_restart_intel' [06:15, 03:15](878 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:09](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:28, 06:25](1004 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:15, 04:40](880 MB) -PASS -- TEST 'hrrr_control_intel' [06:12, 03:14](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:20](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:12, 02:52](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:49](832 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:29, 06:02](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:27](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:13](1955 MB) - -PASS -- COMPILE 'csawmg_intel' [14:16, 12:21] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:01, 06:38](958 MB) -PASS -- TEST 'control_ras_intel' [05:40, 02:52](655 MB) - -PASS -- COMPILE 'wam_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:04, 10:19](1648 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:15, 12:29] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:26, 03:12](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [06:55, 04:44](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:15, 15:22] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:05, 02:13](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 02:07](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:02](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:45](1115 MB) -PASS -- TEST 'control_ras_debug_intel' [04:34, 02:40](818 MB) -PASS -- TEST 'control_diag_debug_intel' [06:21, 02:39](1669 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 03:01](1899 MB) -PASS -- TEST 'regional_debug_intel' [19:03, 16:38](924 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 04:57](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:38](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 04:44](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:44](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 04:45](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 05:02](1272 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 04:49](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 04:50](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:46](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:34, 04:44](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:39, 04:45](1190 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 04:42](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:33](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:43](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:50](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:07](1185 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:17](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 08:01] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:01, 12:09](1698 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 11:56] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 03:31](1018 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:11](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 02:48](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 04:47](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:11, 02:31](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:55](878 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:07, 03:56](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:33](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:16, 11:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:40, 01:58](1074 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:08](1070 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:30, 01:14](963 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:00] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 03:42](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 08:28] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 04:46](1064 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:29](1064 MB) -PASS -- TEST 'conus13km_debug_intel' [18:08, 14:12](1146 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:05, 13:53](831 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:48, 08:05](1143 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:52, 13:47](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:16, 08:16] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:35, 05:05](1090 MB) - -PASS -- COMPILE 'hafsw_intel' [21:15, 19:04] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:26, 04:40](700 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:51, 05:20](1049 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:52, 06:31](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 10:59](772 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:43, 12:01](795 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:29, 04:43](471 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 05:47](487 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:54, 02:20](386 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 06:14](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:02, 03:24](505 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:38, 03:06](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 03:55](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:15](421 MB) -PASS -- TEST 'gnv1_nested_intel' [08:19, 04:13](1710 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:16, 09:53] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 12:16](623 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:18, 18:17] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:28, 07:16](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:32, 07:20](682 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 19:45] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:40, 05:23](673 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:15, 16:36] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:38, 05:44](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:44, 05:43](724 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:15, 16:17](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:13, 09:18] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 02:32](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:42, 01:33](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:38, 02:25](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:40, 02:25](651 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:36, 02:31](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:37, 02:30](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:31, 02:22](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:00, 05:44](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:08, 05:45](681 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:31](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:49, 03:58](2032 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 03:57](1970 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:43] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:29, 05:13](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:14, 09:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:39, 02:29](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 02:55] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:14](306 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:13](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:34, 00:51](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:18, 14:46] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:52, 04:02](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:17, 13:16] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:29, 03:49](1899 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 15:13] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 06:51](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:20](1886 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 04:03](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:13, 11:27] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:20](1926 MB) - -PASS -- COMPILE 'atmw_intel' [16:14, 14:28] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:16](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [15:14, 13:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:31, 04:27](3128 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:44, 04:20](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:07, 04:27](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:14, 09:00] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 22:02](4553 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:14, 11:50] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:37, 08:05](807 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [29:58, 29:57] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:43](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:37, 28:31] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 14:55](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:41, 17:52](1949 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:48, 09:51](1064 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:56, 16:45](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:43, 27:35] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:03, 14:42](1910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [20:10, 20:08] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 23:45](1936 MB) + +PASS -- COMPILE 's2swa_intel' [29:34, 29:34] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:44, 08:54](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 08:50](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:39, 05:38](3148 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:09](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:53, 05:37](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 08:19](3749 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:21, 08:39](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:05, 07:17](3546 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:50, 08:54](3232 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:16, 10:27](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 07:35](3621 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:33, 10:46](4511 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:55, 07:50](4656 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:51, 06:16](3209 MB) + +PASS -- COMPILE 's2sw_intel' [26:44, 26:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 07:03](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:56, 08:19](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [18:37, 18:36] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:47, 13:42](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [18:13, 18:13] ( 1418 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:36, 09:35](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:57, 22:56] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:55](1983 MB) + +PASS -- COMPILE 's2s_intel' [23:18, 23:17] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:51, 05:26](2885 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:18, 02:05](2896 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:12](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:50, 29:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:34, 08:23](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:46, 27:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:57](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:43, 10:33](1095 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:55](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:48, 16:47] ( 1528 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 24:38](1955 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:10, 17:10] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:56, 03:38](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:51](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:51, 02:54](1568 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 02:54](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 02:41](1569 MB) +PASS -- TEST 'control_c48_intel' [10:23, 09:17](1589 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:13, 05:27](711 MB) +PASS -- TEST 'control_c192_intel' [11:30, 10:09](1692 MB) +PASS -- TEST 'control_c384_intel' [15:53, 12:09](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [12:13, 07:51](1177 MB) +PASS -- TEST 'control_stochy_intel' [02:02, 01:45](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:45, 01:11](437 MB) +PASS -- TEST 'control_lndp_intel' [02:08, 01:42](626 MB) +PASS -- TEST 'control_iovr4_intel' [02:57, 02:22](618 MB) +PASS -- TEST 'control_iovr5_intel' [02:49, 02:23](619 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:48](1865 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 04:04](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:48, 04:41](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [04:33, 02:20](1009 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:24, 03:37](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:52](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:55, 03:57](1855 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:26, 03:39](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:29, 06:15](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:51](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:03, 03:15](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [06:41, 03:52](1864 MB) +PASS -- TEST 'regional_control_intel' [05:27, 04:29](862 MB) +PASS -- TEST 'regional_restart_intel' [03:41, 02:49](862 MB) +PASS -- TEST 'regional_decomp_intel' [05:57, 05:03](863 MB) +PASS -- TEST 'regional_noquilt_intel' [05:34, 04:36](1188 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 04:46](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:54](864 MB) +PASS -- TEST 'regional_wofs_intel' [06:48, 06:01](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [15:50, 15:50] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:00, 06:36](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:22, 04:14](1142 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 06:51](1003 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 06:10](1087 MB) +PASS -- TEST 'rap_restart_intel' [05:10, 03:37](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:30, 08:22](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:38](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:44](877 MB) +PASS -- TEST 'hrrr_control_intel' [06:58, 05:28](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:11, 05:35](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 05:03](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:53](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:24, 08:15](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:13, 08:43](1953 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 08:24](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [14:26, 14:26] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:51, 07:02](961 MB) +PASS -- TEST 'control_ras_intel' [03:38, 03:12](659 MB) + +PASS -- COMPILE 'wam_intel' [13:44, 13:43] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:38, 10:24](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:39, 14:39] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:29, 04:15](1863 MB) +PASS -- TEST 'regional_control_faster_intel' [05:24, 04:32](862 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:51, 17:51] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:34](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:30](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:29, 03:06](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 03:00](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:01, 05:17](1113 MB) +PASS -- TEST 'control_ras_debug_intel' [02:57, 02:44](817 MB) +PASS -- TEST 'control_diag_debug_intel' [04:13, 03:08](1666 MB) +PASS -- TEST 'control_debug_p8_intel' [04:27, 03:45](1898 MB) +PASS -- TEST 'regional_debug_intel' [16:53, 16:13](933 MB) +PASS -- TEST 'rap_control_debug_intel' [05:09, 04:55](1194 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:03, 04:48](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 05:00](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:58](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:58](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:16](1280 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 04:59](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:54, 05:11](1187 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:34, 05:13](1200 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:53](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:56](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:57](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:08, 04:50](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:35](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:52](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:35, 08:09](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:36, 09:35] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:39, 12:58](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:05, 14:05] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 04:08](1015 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:14, 05:34](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:03](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:14, 05:00](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 02:47](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:14](877 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:11](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:00](767 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 14:11] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:36, 02:32](1070 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:28](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:35, 01:32](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:19, 14:18] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:56](903 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:57, 09:57] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:45](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:36](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [15:11, 14:14](1143 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:11, 14:12](847 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:26, 08:35](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:13, 14:20](1215 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:32, 09:32] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:01](1097 MB) + +PASS -- COMPILE 'hafsw_intel' [22:14, 22:14] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:24, 05:12](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:04, 06:31](1052 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 07:27](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:40](771 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:17, 12:33](792 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 04:46](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:10](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:27](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 06:40](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:31](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:05, 03:16](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:07, 04:08](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:36, 01:16](422 MB) +PASS -- TEST 'gnv1_nested_intel' [07:36, 04:42](1711 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:15, 13:15] ( 1470 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 13:06](617 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:28, 21:27] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:41, 07:37](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:41, 07:35](682 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:16, 23:15] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:06](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:31, 19:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:23, 06:27](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:26](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:28, 16:21](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:01, 12:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:35](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:38](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:34, 02:27](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:33, 02:27](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:42, 02:34](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:54, 02:41](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:55, 02:43](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:35](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:22](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:39, 05:58](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:55, 02:49](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:26](2031 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:44, 04:20](2031 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:40, 08:40] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:19, 05:10](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:29, 11:28] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:58, 02:49](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:53, 03:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 02:03](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 02:21](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:17, 01:02](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:30, 16:28] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:54, 05:20](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:36, 16:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 04:33](1895 MB) + +PASS -- COMPILE 'atml_intel' [18:03, 18:03] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 09:23](1891 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:35, 09:09](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:25, 05:19](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [14:45, 14:45] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:23, 08:14](1925 MB) + +PASS -- COMPILE 'atmw_intel' [17:59, 17:58] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 03:10](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [16:33, 16:33] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:43, 05:26](3129 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:20, 04:32](3010 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:56, 04:43](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:47, 11:47] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:39, 22:50](4541 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:59, 14:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:54, 08:21](815 MB) SYNOPSIS: -Starting Date/Time: 20240919 07:53:20 -Ending Date/Time: 20240919 09:42:54 -Total Time: 01h:50m:32s +Starting Date/Time: 20240926 09:23:49 +Ending Date/Time: 20240927 03:11:02 +Total Time: 17h:49m:31s Compiles Completed: 42/42 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 69dff2601c..4f4fbc1ec6 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,31 +1,33 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a04244cbba4aaa7cd72d1546981457f04bea51e1 +a548dfb95738d53c36144e4a347eff7c9a786284 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,290 +38,294 @@ 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: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_159670 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_8981 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:15, 18:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 08:35](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 21:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:41, 13:58](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:38, 14:11](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:37, 15:37](1891 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 23:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:52, 13:53](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:04] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [36:36, 25:58](1941 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:35] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:03, 10:24](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:12, 10:25](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:34, 06:24](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:05, 10:19](3252 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:47, 06:04](3176 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:11, 08:59](3471 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:54, 10:08](3224 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:11, 08:51](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:12, 10:14](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 10:05](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:43, 06:34](3607 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:10, 10:00](4206 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 06:04](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:48, 08:11](3212 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 18:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:43, 06:12](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:08, 08:51](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:14, 13:30] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [25:41, 14:31](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:51] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:41, 09:18](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:14, 16:13] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:53, 05:29](1992 MB) - -PASS -- COMPILE 's2s_intel' [18:14, 16:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [13:26, 05:33](2872 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:36, 01:57](2883 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:15, 01:07](2296 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 20:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:52, 10:08](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:36, 15:09](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:48, 08:07](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:37, 17:29](1904 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:12, 15:25] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 27:50](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:12, 14:27] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:51, 03:45](663 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:23, 03:45](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:21, 03:52](1575 MB) -PASS -- TEST 'control_latlon_intel' [08:13, 03:19](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:23, 03:52](1565 MB) -PASS -- TEST 'control_c48_intel' [14:30, 09:52](1578 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:44](699 MB) -PASS -- TEST 'control_c192_intel' [18:22, 11:33](1686 MB) -PASS -- TEST 'control_c384_intel' [31:45, 23:37](1958 MB) -PASS -- TEST 'control_c384gdas_intel' [23:37, 14:44](1153 MB) -PASS -- TEST 'control_stochy_intel' [03:51, 01:58](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:31, 01:01](424 MB) -PASS -- TEST 'control_lndp_intel' [03:51, 02:02](619 MB) -PASS -- TEST 'control_iovr4_intel' [06:56, 02:58](618 MB) -PASS -- TEST 'control_iovr5_intel' [09:38, 02:40](618 MB) -PASS -- TEST 'control_p8_intel' [11:12, 03:41](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:34, 03:34](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:10, 03:44](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [05:06, 02:23](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:02, 03:44](1853 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:15, 02:23](1021 MB) -PASS -- TEST 'control_decomp_p8_intel' [10:11, 03:44](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:11, 03:36](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:23](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:11](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:11, 03:38](1859 MB) -PASS -- TEST 'merra2_thompson_intel' [08:20, 04:04](1855 MB) -PASS -- TEST 'regional_control_intel' [07:42, 04:43](849 MB) -PASS -- TEST 'regional_restart_intel' [04:44, 02:33](854 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 05:05](849 MB) -PASS -- TEST 'regional_2threads_intel' [05:44, 02:54](993 MB) -PASS -- TEST 'regional_noquilt_intel' [06:44, 04:36](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 04:35](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:34, 04:40](857 MB) -PASS -- TEST 'regional_wofs_intel' [07:45, 06:04](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 14:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:08, 06:50](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 03:44](1145 MB) -PASS -- TEST 'rap_decomp_intel' [10:05, 07:17](1004 MB) -PASS -- TEST 'rap_2threads_intel' [09:04, 06:23](1085 MB) -PASS -- TEST 'rap_restart_intel' [06:20, 03:27](872 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:05, 06:56](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:12, 07:30](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:53](871 MB) -PASS -- TEST 'hrrr_control_intel' [06:04, 03:49](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 03:55](998 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 03:05](1073 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:03](827 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:08](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:40](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 08:25](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:15, 13:33] -PASS -- TEST 'control_csawmg_intel' [08:41, 06:56](959 MB) -PASS -- TEST 'control_ras_intel' [06:34, 03:26](652 MB) - -PASS -- COMPILE 'wam_intel' [15:15, 12:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:24, 11:50](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 14:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:27, 03:08](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:53, 04:26](846 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 14:50] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:49](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 02:41](1591 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:27, 03:10](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:59](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:13](1096 MB) -PASS -- TEST 'control_ras_debug_intel' [04:29, 02:49](800 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 02:58](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:00](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:44, 16:11](886 MB) -PASS -- TEST 'rap_control_debug_intel' [06:35, 05:04](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:46, 04:54](1169 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 05:12](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:06](1176 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:33, 05:04](1173 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:18](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:33, 05:11](1173 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:34, 05:08](1176 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:12](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:22](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:37, 04:56](1169 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:06](1176 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:39, 08:24](1169 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:37, 05:13](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:25](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:35, 05:23](1175 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:10, 08:32](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:13, 10:48] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:11, 13:33](1674 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 03:41](1012 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 05:56](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:00, 03:53](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 05:27](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:08, 02:44](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:04, 03:47](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:55, 04:08](776 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:34, 01:38](760 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:19, 02:34](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:59, 00:59](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:00, 01:32](961 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 04:38](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 10:24] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:15](1052 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:31, 04:48](1052 MB) -PASS -- TEST 'conus13km_debug_intel' [17:15, 14:55](1135 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:37](807 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:00, 08:12](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:37, 14:49](1200 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 10:09] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 05:18](1078 MB) - -PASS -- COMPILE 'hafsw_intel' [19:12, 17:10] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:28, 04:47](688 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:46, 03:59](1036 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:47, 07:28](732 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:21, 11:35](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:45, 12:35](779 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:16, 05:01](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:36, 06:15](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:11, 02:30](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:03, 06:51](430 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:09, 03:35](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:14, 03:13](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:17, 04:08](557 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:46, 01:13](396 MB) -PASS -- TEST 'gnv1_nested_intel' [13:06, 05:18](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:12, 12:13] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:13, 12:14](585 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:14, 16:11] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:20, 07:04](598 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:20, 07:14](775 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 16:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:07, 05:26](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 15:49] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:34, 05:49](718 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:20, 06:10](708 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:17, 20:01](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:14, 13:34] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:34, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:00](755 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:31, 02:26](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:27, 02:35](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:58, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 02:34](752 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:54, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:05, 06:08](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:52](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:28, 02:35](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:39](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:33, 04:40](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:14, 12:58] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:32](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:22] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:52, 02:53](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 01:26](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:55, 01:01](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:13, 15:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:49, 04:34](1919 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:16, 14:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:36, 05:07](1907 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:47] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:55, 07:53](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:34, 08:40](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 04:14](1036 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:13, 11:56] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 07:02](1907 MB) - -PASS -- COMPILE 'atmw_intel' [17:16, 15:15] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:56, 02:19](1888 MB) - -PASS -- COMPILE 'atmaero_intel' [16:14, 14:04] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [11:04, 06:10](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:15, 07:00](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:03, 06:43](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:31] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 18:11](4486 MB) - -PASS -- COMPILE 'atm_fbh_intel' [15:14, 13:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:00, 08:56](800 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:13, 20:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:45, 08:29](3189 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:13, 24:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 14:19](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:48, 14:41](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:38, 07:24](1057 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 15:18](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:13, 24:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:26, 13:43](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:16, 13:47] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:03, 27:03](1934 MB) + +PASS -- COMPILE 's2swa_intel' [21:13, 19:43] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:32, 10:32](3212 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:37, 10:59](3210 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:39, 06:19](3137 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:04, 10:34](3235 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:32, 06:47](3159 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:15, 09:20](3453 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:19, 10:12](3209 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:15, 08:58](3154 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:44, 10:20](3212 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:33, 10:04](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:53, 06:52](3591 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:07, 09:27](4195 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:49, 06:00](4350 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:07, 08:11](3194 MB) + +PASS -- COMPILE 's2sw_intel' [21:13, 19:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:00, 06:47](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:17, 09:09](1974 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:16, 14:06] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:44, 14:17](3270 MB) + +PASS -- COMPILE 's2sw_debug_intel' [15:16, 13:47] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:09, 09:06](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:14, 17:38] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:10](1986 MB) + +PASS -- COMPILE 's2s_intel' [19:14, 17:27] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:32, 05:32](2864 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:47, 01:55](2875 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:55, 01:08](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 22:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:56, 10:48](3212 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:12, 23:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:37, 15:24](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 07:40](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 17:16](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:14, 14:44] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:25, 27:56](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 16:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:58, 04:13](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:48, 03:36](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:47, 03:26](1565 MB) +PASS -- TEST 'control_latlon_intel' [08:35, 03:55](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:44, 03:47](1571 MB) +PASS -- TEST 'control_c48_intel' [12:50, 09:58](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:36, 05:46](698 MB) +PASS -- TEST 'control_c192_intel' [15:44, 11:21](1690 MB) +PASS -- TEST 'control_c384_intel' [29:01, 23:56](1957 MB) +PASS -- TEST 'control_c384gdas_intel' [21:02, 14:57](1151 MB) +PASS -- TEST 'control_stochy_intel' [04:53, 02:02](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:33, 01:08](426 MB) +PASS -- TEST 'control_lndp_intel' [03:55, 02:01](617 MB) +PASS -- TEST 'control_iovr4_intel' [05:58, 03:09](617 MB) +PASS -- TEST 'control_iovr5_intel' [05:01, 02:44](616 MB) +PASS -- TEST 'control_p8_intel' [09:22, 04:14](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:51, 03:55](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:08, 04:10](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [05:19, 02:05](1005 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:22, 03:58](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:01](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:13, 04:28](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:11, 03:43](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:54, 06:50](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:17, 04:48](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:10, 03:54](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [06:13, 03:41](1857 MB) +PASS -- TEST 'regional_control_intel' [06:53, 04:49](848 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 02:55](848 MB) +PASS -- TEST 'regional_decomp_intel' [06:42, 05:00](847 MB) +PASS -- TEST 'regional_2threads_intel' [04:42, 02:57](998 MB) +PASS -- TEST 'regional_noquilt_intel' [06:59, 04:56](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:21, 04:59](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 05:06](850 MB) +PASS -- TEST 'regional_wofs_intel' [10:01, 06:51](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [17:11, 15:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:19, 06:59](999 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:40, 03:50](1128 MB) +PASS -- TEST 'rap_decomp_intel' [10:10, 07:37](1004 MB) +PASS -- TEST 'rap_2threads_intel' [10:00, 06:08](1078 MB) +PASS -- TEST 'rap_restart_intel' [07:06, 03:30](867 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:01, 06:51](998 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 07:17](994 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:09, 05:07](866 MB) +PASS -- TEST 'hrrr_control_intel' [07:08, 03:47](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:10, 03:54](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:59, 03:07](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:00](822 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:59, 06:39](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:12](1952 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 08:57](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [18:15, 16:50] +PASS -- TEST 'control_csawmg_intel' [12:36, 06:41](955 MB) +PASS -- TEST 'control_ras_intel' [06:28, 03:57](652 MB) + +PASS -- COMPILE 'wam_intel' [18:15, 17:03] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:33, 12:16](1641 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:57, 03:42](1857 MB) +PASS -- TEST 'regional_control_faster_intel' [07:23, 04:40](845 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:12, 15:22] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 02:56](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:52, 02:50](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:24, 03:20](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:27, 02:53](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:37, 04:19](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [06:32, 02:51](802 MB) +PASS -- TEST 'control_diag_debug_intel' [06:52, 03:01](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [05:49, 03:03](1877 MB) +PASS -- TEST 'regional_debug_intel' [19:46, 16:46](887 MB) +PASS -- TEST 'rap_control_debug_intel' [07:28, 05:15](1173 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:29, 05:07](1168 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:19](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:11](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 05:16](1173 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:30](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:10](1171 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:29](1172 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:11](1173 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:26, 05:06](1172 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:26, 05:12](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:31, 05:08](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 08:06](1173 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 05:01](1167 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:34, 05:57](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:08](1173 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:02, 08:39](1178 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:14, 12:17] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:03, 13:37](1679 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 15:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:33](1004 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:01, 06:01](876 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:54, 03:48](871 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 05:12](931 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:54, 02:47](920 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:55, 03:37](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:00, 04:13](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:34, 01:41](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:17, 14:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:15, 02:30](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [12:06, 00:54](1051 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:09, 01:27](954 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:17, 14:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 04:38](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 05:15](1049 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:52](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [17:10, 14:39](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:15, 14:44](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:06, 08:26](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 15:08](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:13, 10:53] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 05:00](1070 MB) + +PASS -- COMPILE 'hafsw_intel' [19:15, 18:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:13, 04:39](683 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 03:59](1028 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:27, 07:33](727 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:12, 11:32](758 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 12:33](774 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:07, 05:15](466 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:30, 06:14](475 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:11, 02:31](365 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:56, 06:52](436 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:58, 03:31](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:13, 03:24](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:13, 04:10](553 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:42, 01:16](397 MB) +PASS -- TEST 'gnv1_nested_intel' [22:06, 05:17](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:13, 12:40] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:05, 12:37](577 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:19, 17:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:05, 07:05](592 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:18, 07:14](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:13, 19:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:35, 05:27](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:14, 17:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [25:21, 06:01](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:12, 05:59](703 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:13, 20:08](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:11, 14:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [19:26, 02:36](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:39](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [17:30, 02:26](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [16:27, 02:28](650 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [15:24, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [14:24, 02:36](752 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [14:26, 02:36](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [13:30, 02:26](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:16, 05:58](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:19, 06:00](678 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [11:25, 02:35](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:42](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [13:28, 04:42](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:10, 10:05] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:22, 05:29](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:11, 13:57] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:28, 02:36](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [08:55, 01:51](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:46, 01:11](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 01:08](454 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:20, 04:53] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:11, 00:38](449 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [03:08, 00:19](248 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 14:51] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:28, 04:04](1909 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:14, 14:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:22, 04:02](1895 MB) + +PASS -- COMPILE 'atml_intel' [16:16, 14:38] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:40, 07:00](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:47, 07:07](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:49, 04:27](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:17, 10:56] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:34, 06:21](1917 MB) + +PASS -- COMPILE 'atmw_intel' [16:17, 15:05] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:01, 02:41](1881 MB) + +PASS -- COMPILE 'atmaero_intel' [16:14, 14:38] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:22, 06:34](3108 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:22, 06:46](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:13, 07:09](3004 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:18, 11:11] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:33, 18:05](4416 MB) + +PASS -- COMPILE 'atm_fbh_intel' [15:11, 13:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:39, 08:58](796 MB) SYNOPSIS: -Starting Date/Time: 20240918 23:35:48 -Ending Date/Time: 20240919 01:30:37 -Total Time: 01h:55m:53s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20241008 16:57:16 +Ending Date/Time: 20241008 18:56:17 +Total Time: 02h:00m:06s +Compiles Completed: 43/43 +Tests Completed: 188/188 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 60f1b9f054..bc30027e59 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,21 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 +a548dfb95738d53c36144e4a347eff7c9a786284 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) 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) 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -25,379 +26,384 @@ 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-20240909 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3988882 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1987659 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:12, 12:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:23, 06:34](3332 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:12, 16:53] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 17:24](1974 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:26, 18:09](2155 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:18, 08:22](1286 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 19:41](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 16:33] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:06](1962 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:54] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:00, 23:54](1939 MB) - -PASS -- COMPILE 's2swa_intel' [15:12, 12:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:19, 07:48](3355 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:26, 07:38](3339 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:22, 04:28](3271 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:19, 07:43](3388 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 04:19](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:19, 07:22](3644 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 07:52](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 06:12](3237 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:24, 07:44](3370 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:16, 10:24](3535 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 06:31](3611 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 08:53](4301 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:40, 06:09](4384 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:13, 05:38](3342 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 12:28] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:59, 05:49](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:04, 07:34](2037 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 06:06] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:56, 13:30](3413 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:25] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:04, 09:14](2010 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:41] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:58, 04:21](2053 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:39, 07:45](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:40, 02:45](3043 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:41, 01:34](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 16:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 07:19](3367 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 16:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 17:33](2024 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:20](1283 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:01](1948 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:41] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:12, 26:41](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:25, 03:26](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 03:12](1596 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:16](1597 MB) -PASS -- TEST 'control_latlon_intel' [06:44, 03:16](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:17](1597 MB) -PASS -- TEST 'control_c48_intel' [13:51, 11:28](1724 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:29](859 MB) -PASS -- TEST 'control_c192_intel' [15:06, 12:01](1737 MB) -PASS -- TEST 'control_c384_intel' [18:13, 13:46](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [12:54, 08:21](1389 MB) -PASS -- TEST 'control_stochy_intel' [03:21, 01:40](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:01](507 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:35](657 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](659 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:29](667 MB) -PASS -- TEST 'control_p8_intel' [05:54, 03:42](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:09](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:50, 03:41](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [03:44, 02:01](1132 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:36](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:56, 02:00](1166 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:43](1874 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:29](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:44, 06:31](1893 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 04:03](1953 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:05](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:21](1902 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:20](1094 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:54](1085 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:38](1092 MB) -PASS -- TEST 'regional_2threads_intel' [05:33, 03:24](1091 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:18](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:21](1091 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:25](1099 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 06:53](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 10:31] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 07:49](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:08](1248 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:09](1038 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 07:23](1165 MB) -PASS -- TEST 'rap_restart_intel' [05:42, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:39, 07:46](1098 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:36, 08:10](1033 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:45, 05:53](1126 MB) -PASS -- TEST 'hrrr_control_intel' [05:46, 03:59](1044 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:06](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:40](1105 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:12](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 07:42](1095 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:25](1986 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:10](2055 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:14](1024 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:18](759 MB) - -PASS -- COMPILE 'csawmg_gnu' [08:12, 04:19] -PASS -- TEST 'control_csawmg_gnu' [11:35, 08:22](746 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 11:21](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 10:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:48, 02:45](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 04:50](1092 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 07:37] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:38, 02:10](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:10](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:05](833 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:20](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:53](836 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 02:51](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 02:50](1898 MB) -PASS -- TEST 'regional_debug_intel' [19:38, 17:47](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1217 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:49](1213 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:59](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:55](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:24](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:03](1217 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:09](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:00](1222 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:57](1227 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 05:03](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:06](1213 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:56](1217 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:55](1218 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:42, 08:36](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:00] -PASS -- TEST 'control_csawmg_debug_gnu' [04:38, 02:19](728 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:41] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:49, 13:27](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:04, 03:53](1125 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:27](1048 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:38, 03:25](993 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:35, 06:12](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:30, 03:13](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:38](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:46, 05:00](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:54](931 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 10:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:59, 02:10](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:54](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:20](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:09](985 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:57] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:56](1097 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 05:02](1092 MB) -PASS -- TEST 'conus13km_debug_intel' [17:45, 15:10](1230 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:59](932 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:25](1164 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:53](1301 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:48] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 05:06](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 11:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:02](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:19](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 06:59](809 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:31](849 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:40, 15:14](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:29](495 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:43](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:44](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:34, 07:13](473 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:42](521 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:59, 03:32](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:08](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:32, 01:18](400 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 04:14](1741 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:57] ( 1465 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:22](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:21] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:05, 08:55](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:51](695 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 11:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:30, 06:32](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 10:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:31](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 06:43](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:18](1218 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:54](1170 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:40](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:45](1044 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 02:39](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:41](1025 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:44](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:45](1169 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:38](1039 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 06:13](1075 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:41, 06:29](1061 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:46](1157 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:13](2451 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 03:59](2462 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:14] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:22, 06:30](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:46] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:46](1158 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 00:46](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 00:54](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:36] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:22, 03:50](1945 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 10:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:36](1933 MB) - -PASS -- COMPILE 'atml_intel' [12:13, 10:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 04:25](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:29](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:30](1099 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 05:57] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:53](1902 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 10:57] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:56](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:24](3207 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:56](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:47, 04:58](3127 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:35] ( 882 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:31] -PASS -- TEST 'control_c48_gnu' [11:42, 09:17](1511 MB) -PASS -- TEST 'control_stochy_gnu' [05:26, 03:34](499 MB) -PASS -- TEST 'control_ras_gnu' [06:23, 04:57](506 MB) -PASS -- TEST 'control_p8_gnu' [08:07, 05:12](1457 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:59, 05:09](1458 MB) -PASS -- TEST 'control_flake_gnu' [12:25, 10:27](540 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:17] -PASS -- TEST 'rap_control_gnu' [12:33, 10:50](843 MB) -PASS -- TEST 'rap_decomp_gnu' [12:31, 11:04](812 MB) -PASS -- TEST 'rap_2threads_gnu' [11:44, 10:04](921 MB) -PASS -- TEST 'rap_restart_gnu' [07:41, 05:34](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:49, 10:55](813 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:33, 11:10](815 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 07:59](580 MB) -PASS -- TEST 'hrrr_control_gnu' [07:43, 05:37](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:39, 05:45](834 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:50, 05:05](911 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:40](813 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 02:59](564 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:55](659 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:46, 10:32](809 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:41](1275 MB) -PASS -- TEST 'regional_debug_gnu' [13:39, 11:26](743 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:39](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:38](825 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](826 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:36](830 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:53](912 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:04](821 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:42](827 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:38](821 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:24, 01:37](461 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:47](450 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:36](1433 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:35](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:23, 02:50](824 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:43, 04:25](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:33] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:26](716 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:42, 04:55](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:40, 08:39](751 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:33, 04:40](751 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:35, 05:18](706 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:03](556 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:25, 02:37](539 MB) -PASS -- TEST 'conus13km_control_gnu' [06:26, 03:15](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:47, 05:37](875 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:45, 01:49](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:45] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:43, 05:39](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:32](719 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:24, 02:33](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:48, 07:06](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:43, 07:10](582 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:40, 06:58](897 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:45, 07:06](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:31] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:28, 02:36](748 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [18:11, 16:09] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [17:10, 14:27](1520 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 03:08] - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:18] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:59, 19:49](1471 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:58] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](696 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:29, 11:20](1090 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 06:12](3294 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:13, 15:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:41](1964 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:46, 17:54](2165 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:21, 08:12](1269 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:09, 18:48](1864 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:13, 16:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:47, 16:21](1934 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 05:52] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:00, 23:26](1919 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 12:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:23, 07:51](3318 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:27, 07:29](3328 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:46, 04:14](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:16, 07:32](3348 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 05:37](3256 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:09, 07:06](3639 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:09, 07:37](3318 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 06:16](3194 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:27, 07:32](3350 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:26, 09:53](3523 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:06, 06:10](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:47, 08:53](4279 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:05, 06:22](4377 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:23](3291 MB) + +PASS -- COMPILE 's2sw_intel' [13:13, 11:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:06, 05:41](1958 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:18, 07:25](2004 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:52] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:02, 12:59](3410 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:20] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:01, 09:02](2016 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:14, 10:38] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:24](2036 MB) + +PASS -- COMPILE 's2s_intel' [12:14, 10:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:44](3042 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:41, 02:40](3043 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:46, 01:32](2469 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:14, 16:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:18, 07:15](3336 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 15:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:53, 16:51](1981 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:57](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 18:59](1932 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:59] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:13](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:29, 03:17](697 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 03:14](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:58, 03:18](1587 MB) +PASS -- TEST 'control_latlon_intel' [05:50, 03:11](1581 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:59, 03:31](1584 MB) +PASS -- TEST 'control_c48_intel' [13:57, 11:20](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 06:24](857 MB) +PASS -- TEST 'control_c192_intel' [14:14, 11:48](1748 MB) +PASS -- TEST 'control_c384_intel' [17:07, 13:22](1982 MB) +PASS -- TEST 'control_c384gdas_intel' [12:11, 08:08](1375 MB) +PASS -- TEST 'control_stochy_intel' [03:26, 01:37](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:57](497 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:32](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:29, 02:28](654 MB) +PASS -- TEST 'control_iovr5_intel' [04:28, 02:27](653 MB) +PASS -- TEST 'control_p8_intel' [06:12, 03:43](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:08](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 03:32](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 01:59](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:36](1871 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:03, 01:59](1152 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:49, 03:42](1842 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:45, 03:28](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:52, 06:28](1874 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:57](1954 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:56, 03:02](1903 MB) +PASS -- TEST 'merra2_thompson_intel' [05:49, 03:21](1888 MB) +PASS -- TEST 'regional_control_intel' [07:37, 05:16](1085 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 02:57](1081 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 05:35](1078 MB) +PASS -- TEST 'regional_2threads_intel' [05:41, 03:25](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [07:37, 05:15](1393 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:22](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 05:32](1098 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 07:02](1893 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:47] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 07:46](1099 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 04:16](1245 MB) +PASS -- TEST 'rap_decomp_intel' [09:35, 08:04](1024 MB) +PASS -- TEST 'rap_2threads_intel' [09:33, 07:19](1174 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 04:00](1099 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:44, 07:41](1101 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 08:01](1032 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1121 MB) +PASS -- TEST 'hrrr_control_intel' [05:43, 03:57](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 04:01](1028 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:37](1097 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:09](1001 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 07:36](1088 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:17](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:27, 09:21](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [10:12, 09:05] +PASS -- TEST 'control_csawmg_intel' [07:51, 06:07](1020 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:16](742 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:04] +PASS -- TEST 'control_csawmg_gnu' [11:38, 09:59](730 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 09:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:56, 11:13](1652 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 09:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:59, 02:57](1886 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 04:52](1092 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:13, 07:26] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:10](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:14](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 02:58](828 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:43](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:33, 04:11](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [04:22, 02:41](841 MB) +PASS -- TEST 'control_diag_debug_intel' [04:43, 02:55](1685 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 02:35](1912 MB) +PASS -- TEST 'regional_debug_intel' [20:44, 18:10](1112 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 04:52](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:46](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:49](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:51](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 04:52](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:03](1300 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:55](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:53](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:48](1217 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:49](1216 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:25, 04:50](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:47](1211 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:52](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:47](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:07](1220 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:59](1216 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:24](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:24] +PASS -- TEST 'control_csawmg_debug_gnu' [05:49, 03:58](718 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:29] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:50, 13:10](1689 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:25, 03:51](1122 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:26](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:44, 03:21](979 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:04](1086 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:42, 03:07](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:32](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:41, 04:51](1026 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:51](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:12, 09:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:05, 02:05](1187 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:58, 00:56](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:14](1091 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:10](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:43] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:43](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:34](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [16:54, 14:15](1241 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:29](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:02](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:00](1294 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 04:33] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:46](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [12:11, 11:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:22, 04:58](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:30](1098 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:06](816 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:12](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:41](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 05:30](486 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:34](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:11, 02:40](370 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:34, 07:15](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:37](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 03:30](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 04:12](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:27, 01:09](397 MB) +PASS -- TEST 'gnv1_nested_intel' [06:31, 03:55](1735 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 05:03] ( 1465 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 12:36](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:14, 10:41] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 08:42](638 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:18, 08:44](695 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 10:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:36, 06:20](675 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:40] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:18](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:23, 06:23](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:06, 16:16](1233 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:22] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:45](1169 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:38](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:42](1028 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:46](1032 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:43](1040 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:43](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:43](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:38](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:15](1070 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:12](1044 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:44](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:52](2511 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:56](2518 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:12] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:26](1087 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:18] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:45](1172 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:58] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:43](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:23, 00:34](321 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:12, 01:13] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:29, 00:30](570 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:29, 00:16](468 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:07, 03:42](1985 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:57, 03:32](1964 MB) + +PASS -- COMPILE 'atml_intel' [12:12, 10:08] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:00, 04:11](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 04:15](1849 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:19](1089 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:13, 05:27] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:35](1882 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:19] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:51](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 10:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:05](3179 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:45](3093 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:49](3105 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:12, 04:26] ( 882 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:27] +PASS -- TEST 'control_c48_gnu' [11:40, 09:32](1509 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:22](494 MB) +PASS -- TEST 'control_ras_gnu' [06:21, 04:53](498 MB) +PASS -- TEST 'control_p8_gnu' [07:53, 05:10](1443 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:51, 05:07](1475 MB) +PASS -- TEST 'control_flake_gnu' [12:26, 10:27](535 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 04:12] +PASS -- TEST 'rap_control_gnu' [13:32, 11:16](802 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:22](800 MB) +PASS -- TEST 'rap_2threads_gnu' [12:40, 10:15](919 MB) +PASS -- TEST 'rap_restart_gnu' [07:45, 05:45](568 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:10](807 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:41, 11:19](802 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:43, 08:24](573 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:49](801 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:33, 05:46](786 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:15](902 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:35, 05:50](799 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:31, 02:58](553 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:57](645 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:47, 11:00](800 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:31] +PASS -- TEST 'control_diag_debug_gnu' [03:46, 01:34](1264 MB) +PASS -- TEST 'regional_debug_gnu' [12:37, 10:32](759 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:24](815 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:24](813 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:21, 02:27](820 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:27](809 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:42](899 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 03:47](811 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:25](820 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:27](808 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:28](450 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:38](443 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:32](1432 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:30, 02:29](815 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:44](817 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 03:57](822 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:52] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:30, 09:38](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 05:04](689 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:38, 08:45](740 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 04:42](736 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:30, 05:13](689 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:48, 07:14](545 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:23, 02:36](525 MB) +PASS -- TEST 'conus13km_control_gnu' [05:52, 03:14](861 MB) +PASS -- TEST 'conus13km_2threads_gnu' [09:44, 05:56](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:43, 01:48](555 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:34] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 05:47](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:27] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:24, 02:22](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:16](704 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:29](875 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:49, 06:38](567 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:49, 07:41](877 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:28](943 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:37] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:23, 02:30](733 MB) + +PASS -- COMPILE 's2swa_gnu' [17:11, 15:50] + +PASS -- COMPILE 's2s_gnu' [16:14, 15:04] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [15:09, 12:22](1487 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:22] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:40] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:13, 21:15](1441 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:58] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:53] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 03:01](697 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:13, 09:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:31, 11:14](1086 MB) SYNOPSIS: -Starting Date/Time: 20240917 23:56:35 -Ending Date/Time: 20240918 01:39:45 -Total Time: 01h:43m:27s -Compiles Completed: 58/58 -Tests Completed: 244/244 +Starting Date/Time: 20241008 20:50:57 +Ending Date/Time: 20241008 22:32:43 +Total Time: 01h:42m:03s +Compiles Completed: 59/59 +Tests Completed: 246/246 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 82a91d427e..4b8443b03a 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,31 +1,33 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -9e7771572ae0e1b5f6c71e6bc0e1e8f79b7af8b5 +229038624f3cd9854cdb4f2a8b235eee207416d3 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,378 +38,379 @@ 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-20240909 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_594867 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_169100 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [11:15, 11:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:32, 07:47](2147 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:40, 16:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:12, 13:24](1995 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:07, 14:08](2289 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:36, 06:52](1360 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:26, 15:33](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:07, 16:07] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:43, 13:07](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:00, 06:00] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:02, 22:07](1973 MB) - -PASS -- COMPILE 's2swa_intel' [11:16, 11:16] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:53, 08:04](2216 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:51, 08:00](2225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:10, 04:29](1957 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:10, 08:14](2230 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:50, 05:05](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 09:16](2564 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:44, 08:06](2196 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:18, 06:46](2126 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 08:54](2223 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:38, 15:22](2991 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:39, 05:54](2926 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:07, 08:09](3840 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:38, 05:52](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:44, 05:08](2164 MB) - -PASS -- COMPILE 's2sw_intel' [10:27, 10:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 07:10](2022 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:32, 06:50](2084 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:12, 05:12] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:52, 12:05](2245 MB) - -PASS -- COMPILE 's2sw_debug_intel' [04:44, 04:44] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:09, 09:26](2060 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:24, 09:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:49, 04:07](2077 MB) - -PASS -- COMPILE 's2s_intel' [09:51, 09:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:23, 05:54](3039 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:28, 02:01](3026 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:26, 01:08](2488 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:05, 12:05] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:39, 07:51](2212 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:43] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:31, 13:57](2078 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:53, 07:01](1404 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 16:21](2008 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 05:13] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:35, 22:54](2023 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:25, 09:25] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:25, 03:12](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:08, 02:41](1602 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:17, 02:46](1598 MB) -PASS -- TEST 'control_latlon_intel' [02:57, 02:42](1583 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:19, 02:50](1594 MB) -PASS -- TEST 'control_c48_intel' [10:55, 10:31](1718 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:01, 05:49](839 MB) -PASS -- TEST 'control_c192_intel' [10:45, 10:11](1771 MB) -PASS -- TEST 'control_c384_intel' [13:19, 12:13](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [09:00, 07:23](1510 MB) -PASS -- TEST 'control_stochy_intel' [01:37, 01:25](676 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:54](553 MB) -PASS -- TEST 'control_lndp_intel' [01:32, 01:21](671 MB) -PASS -- TEST 'control_iovr4_intel' [02:17, 02:08](669 MB) -PASS -- TEST 'control_iovr5_intel' [02:26, 02:13](669 MB) -PASS -- TEST 'control_p8_intel' [03:56, 03:18](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:18, 03:24](1906 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:58, 03:05](1894 MB) -PASS -- TEST 'control_restart_p8_intel' [02:18, 01:52](1150 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:03](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:18, 01:46](1219 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:56, 03:14](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:07, 03:18](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:14, 05:46](1885 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:18, 03:35](1980 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:16, 02:43](1912 MB) -PASS -- TEST 'merra2_thompson_intel' [04:30, 03:41](1919 MB) -PASS -- TEST 'regional_control_intel' [04:49, 04:34](1209 MB) -PASS -- TEST 'regional_restart_intel' [03:03, 02:48](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:03, 04:49](1186 MB) -PASS -- TEST 'regional_2threads_intel' [03:14, 02:58](1159 MB) -PASS -- TEST 'regional_noquilt_intel' [04:54, 04:32](1523 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:59, 04:36](1200 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:11, 04:56](1199 MB) -PASS -- TEST 'regional_wofs_intel' [06:50, 06:30](2072 MB) - -PASS -- COMPILE 'rrfs_intel' [08:49, 08:49] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:38, 06:51](1198 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:59, 03:33](1363 MB) -PASS -- TEST 'rap_decomp_intel' [08:08, 07:28](1141 MB) -PASS -- TEST 'rap_2threads_intel' [07:11, 06:33](1355 MB) -PASS -- TEST 'rap_restart_intel' [05:34, 03:55](1142 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:33, 07:38](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 09:12](1142 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:53, 05:29](1185 MB) -PASS -- TEST 'hrrr_control_intel' [05:33, 04:23](1070 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:52, 03:44](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:30](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:18, 02:11](1034 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:39, 07:31](1194 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:27, 07:55](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:08, 07:41](2165 MB) - -PASS -- COMPILE 'csawmg_intel' [07:55, 07:55] -PASS -- TEST 'control_csawmg_intel' [06:22, 06:06](1044 MB) -PASS -- TEST 'control_ras_intel' [03:24, 03:10](830 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:00, 04:00] -PASS -- TEST 'control_csawmg_gnu' [08:49, 08:33](1063 MB) - -PASS -- COMPILE 'wam_intel' [09:19, 09:19] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:08, 09:45](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:46, 08:46] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:29, 02:48](1897 MB) -PASS -- TEST 'regional_control_faster_intel' [04:41, 04:23](1194 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:39, 06:38] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:43, 02:19](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:19](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:01, 02:52](845 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:41, 02:32](851 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:26](1161 MB) -PASS -- TEST 'control_ras_debug_intel' [02:43, 02:28](859 MB) -PASS -- TEST 'control_diag_debug_intel' [02:59, 02:36](1704 MB) -PASS -- TEST 'control_debug_p8_intel' [03:35, 03:08](1911 MB) -PASS -- TEST 'regional_debug_intel' [17:39, 17:17](1144 MB) -PASS -- TEST 'rap_control_debug_intel' [04:29, 04:21](1226 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:50, 04:39](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:09, 04:57](1240 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 05:10](1243 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:50, 04:41](1235 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:54, 04:38](1322 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:57](1229 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 04:57](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:49](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:46, 04:38](1233 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 05:07](1233 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:57, 04:47](1235 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:51, 07:44](1227 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:45, 04:37](1229 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:42, 05:31](1241 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:59, 04:47](1237 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:59](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:37, 04:36] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 03:09](1048 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:20, 04:20] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:49, 08:48] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:01, 03:21](1239 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:32, 05:48](1169 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 02:56](1032 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:08, 05:22](1281 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:33, 02:40](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:55, 04:08](1104 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:47](958 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:18, 08:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:20, 01:51](1295 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:50](1194 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1141 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:28, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:12, 03:49](1084 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 04:08](1109 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:16, 04:01](1108 MB) -PASS -- TEST 'conus13km_debug_intel' [13:01, 12:30](1358 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [12:50, 12:21](1004 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:31, 07:05](1249 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:40, 12:22](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:07, 04:07] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:41, 04:32](1163 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 10:11] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:14, 05:20](853 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:16, 05:03](1261 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:27, 06:23](916 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:54, 14:00](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:17](990 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:30, 05:43](600 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:03, 06:57](604 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:09, 02:36](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:17, 07:35](545 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:45](606 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:18, 03:38](610 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:35, 04:51](665 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:12](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:39, 04:38] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:48, 12:04](643 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:00, 09:59] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:38, 16:44](747 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:41, 15:49](833 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:46, 09:46] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:36, 10:22](823 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:24, 10:24] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:35, 05:42](920 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:25, 05:31](917 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:03, 16:29](1339 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:01] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:05, 03:00](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:43](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:10, 02:05](1018 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:04, 02:56](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:01, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:15, 02:11](1168 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:06, 03:00](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:04](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:31, 04:55](1180 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:30, 04:54](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:01, 02:58](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:07, 03:59](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:08, 03:03](2408 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:03, 03:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:13](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:16, 06:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:59, 02:55](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:45, 00:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:12, 00:56](332 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:04, 00:50](575 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:32](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:42, 08:42] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:27, 03:46](2035 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:35, 08:35] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:48, 03:13](1999 MB) - -PASS -- COMPILE 'atml_intel' [09:40, 09:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:43, 05:55](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 06:11](1903 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 03:09](1133 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:32, 05:32] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 06:00](1926 MB) - -PASS -- COMPILE 'atmw_intel' [09:18, 09:17] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 02:34](1924 MB) - -PASS -- COMPILE 'atmaero_intel' [08:57, 08:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:54, 04:07](2011 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:08, 04:29](1794 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:59, 05:29](1809 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 04:12] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [17:43, 16:31](4573 MB) - -PASS -- COMPILE 'atm_gnu' [04:14, 04:13] -PASS -- TEST 'control_c48_gnu' [11:38, 11:13](1530 MB) -PASS -- TEST 'control_stochy_gnu' [02:36, 02:24](726 MB) -PASS -- TEST 'control_ras_gnu' [04:01, 03:53](736 MB) -PASS -- TEST 'control_p8_gnu' [04:52, 04:12](1703 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:46, 04:13](1710 MB) -PASS -- TEST 'control_flake_gnu' [04:47, 04:36](816 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:31, 04:30] -PASS -- TEST 'rap_control_gnu' [08:57, 08:21](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [08:50, 08:11](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [07:51, 07:16](1140 MB) -PASS -- TEST 'rap_restart_gnu' [04:55, 04:16](889 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:32, 07:58](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:07, 08:23](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:16](888 MB) -PASS -- TEST 'hrrr_control_gnu' [04:47, 04:04](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:42, 04:10](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [17:27, 16:47](1029 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:48, 04:09](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:20, 02:11](895 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:29, 02:09](938 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:43, 07:58](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:23, 06:23] -PASS -- TEST 'control_diag_debug_gnu' [01:40, 01:16](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:03, 06:48](1155 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:04, 01:57](1106 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 02:04](1093 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:14, 02:04](1100 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:23, 02:11](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:22, 02:08](1273 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:15, 03:06](1101 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:05, 01:56](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:08, 02:01](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:18, 01:12](725 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:39, 01:27](723 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:49, 01:23](1723 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:16, 02:07](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:30, 02:20](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:17, 03:40](1104 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:04, 05:04] -PASS -- TEST 'control_wam_debug_gnu' [05:34, 05:11](1559 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 06:06] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:25, 07:53](961 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:58, 04:04](949 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 07:07](982 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:49](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:57, 04:13](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:29, 05:50](867 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:30, 02:09](863 MB) -PASS -- TEST 'conus13km_control_gnu' [03:06, 02:40](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:27, 01:07](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:49, 01:30](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:14, 11:13] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:56, 04:32](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:50, 08:49] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:07, 02:00](975 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:12, 01:58](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:08, 05:41](1283 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:45](958 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:18](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:50, 05:34](1357 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:58, 08:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:03, 01:57](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [20:27, 20:27] - -PASS -- COMPILE 's2s_gnu' [20:03, 20:02] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:29, 08:50](3091 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:21, 04:21] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:40, 17:40] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:43, 26:02](3025 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:16, 03:16] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:55, 12:18](3064 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:45, 15:45] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:29, 03:22](763 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:20, 08:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:05, 09:48](1085 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 11:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:02, 08:38](2132 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:13, 14:38](2001 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:29, 15:02](2277 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 07:14](1348 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:11, 15:21](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 16:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:49, 13:36](1982 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 04:49] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 22:30](1964 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 10:36] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:00, 09:00](2197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:11, 09:06](2195 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:06, 05:10](1948 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:57, 09:34](2219 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:09, 05:08](1722 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:54, 09:33](2545 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:56, 08:49](2189 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:15, 07:34](2107 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:08, 09:08](2214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:09, 16:36](2975 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:04, 06:50](2907 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:53, 09:35](3822 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:04, 06:08](3629 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 05:48](2143 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 10:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:04, 07:44](2005 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:11, 07:30](2074 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:07] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:07, 12:34](2224 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:08] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:43](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 09:58] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:13, 04:57](2072 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 10:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:02, 06:28](3027 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:00, 02:38](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:37](2475 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 11:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:09, 08:28](2203 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 16:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:51, 14:24](2073 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:51](1406 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:57, 16:02](2005 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:36] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:54, 23:31](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:11, 10:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:20, 03:21](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:32, 02:51](1584 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:36, 02:51](1595 MB) +PASS -- TEST 'control_latlon_intel' [06:29, 02:45](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:36, 02:50](1586 MB) +PASS -- TEST 'control_c48_intel' [14:40, 10:16](1708 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:28, 05:53](838 MB) +PASS -- TEST 'control_c192_intel' [13:46, 10:15](1773 MB) +PASS -- TEST 'control_c384_intel' [16:29, 12:33](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [15:04, 10:18](1506 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:48](664 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:59](543 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:42](666 MB) +PASS -- TEST 'control_iovr4_intel' [06:20, 02:44](650 MB) +PASS -- TEST 'control_iovr5_intel' [05:18, 02:43](662 MB) +PASS -- TEST 'control_p8_intel' [06:46, 03:48](1886 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:56, 03:57](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 03:24](1880 MB) +PASS -- TEST 'control_restart_p8_intel' [04:52, 02:14](1166 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:47](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:56, 02:37](1216 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:44, 03:28](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:22](1971 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:30, 05:51](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 04:39](1971 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:48, 03:18](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [05:55, 04:07](1897 MB) +PASS -- TEST 'regional_control_intel' [07:25, 05:07](1186 MB) +PASS -- TEST 'regional_restart_intel' [04:27, 03:03](1164 MB) +PASS -- TEST 'regional_decomp_intel' [07:25, 05:13](1181 MB) +PASS -- TEST 'regional_2threads_intel' [05:24, 03:23](1146 MB) +PASS -- TEST 'regional_noquilt_intel' [07:30, 05:06](1518 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:31, 05:15](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 05:05](1195 MB) +PASS -- TEST 'regional_wofs_intel' [09:27, 07:33](2080 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:35] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:51, 07:08](1224 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:51, 03:43](1344 MB) +PASS -- TEST 'rap_decomp_intel' [11:42, 07:49](1144 MB) +PASS -- TEST 'rap_2threads_intel' [11:42, 07:25](1352 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 03:56](1138 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:36, 07:08](1206 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:40, 07:46](1142 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:58, 05:25](1196 MB) +PASS -- TEST 'hrrr_control_intel' [05:53, 03:31](1061 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 03:36](1051 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:43, 03:10](1099 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:33, 01:56](1025 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:55, 06:53](1200 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 10:48](2000 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:21, 10:25](2196 MB) + +PASS -- COMPILE 'csawmg_intel' [09:12, 07:51] +PASS -- TEST 'control_csawmg_intel' [08:26, 06:34](1053 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:29](846 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:55] +PASS -- TEST 'control_csawmg_gnu' [10:36, 08:32](1053 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 09:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:38, 10:01](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 08:37] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:52, 03:07](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [06:27, 04:47](1182 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:07] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 01:51](1623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:33, 01:54](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 02:29](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:18](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:35, 03:55](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:20](854 MB) +PASS -- TEST 'control_diag_debug_intel' [04:31, 02:16](1689 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 02:50](1913 MB) +PASS -- TEST 'regional_debug_intel' [17:30, 15:11](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [06:17, 04:14](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:10](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:08](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:05](1229 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 04:07](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:25](1316 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:16](1226 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:15](1235 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:14](1230 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:12](1225 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:08](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:17](1231 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 06:47](1216 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:11](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:04](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:07](1220 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:50, 07:00](1226 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:35] +PASS -- TEST 'control_csawmg_debug_gnu' [04:40, 02:32](1038 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:40] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:32](1234 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:47, 05:26](1156 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:53](1023 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 05:08](1279 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:37](1025 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:01](989 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 04:04](1081 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:20, 01:35](952 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:48] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:38, 02:23](1288 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:34, 01:05](1179 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:32, 01:30](1127 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:51](1081 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:48] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:35](1104 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 04:31](1099 MB) +PASS -- TEST 'conus13km_debug_intel' [15:32, 14:07](1338 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:29, 14:17](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:27, 10:27](1252 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:28, 13:55](1406 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:51] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:23](1160 MB) + +PASS -- COMPILE 'hafsw_intel' [13:10, 10:43] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:23](849 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 05:25](1253 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:11, 06:32](935 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:04](964 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:08, 15:11](993 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 05:41](590 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:16, 07:21](602 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:47, 02:58](432 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:56, 07:58](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:43, 03:58](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:43, 03:48](602 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:44, 05:00](657 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:25, 01:19](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:46] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:42, 11:54](650 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 10:14] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:51, 16:24](727 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:53, 16:59](826 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:12] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:22, 10:13](814 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:27] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:07, 07:20](906 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 07:18](900 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:46, 16:27](1365 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 02:13](1148 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:20](1114 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:07](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:10](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:12](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:12](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:12](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:55, 05:02](1167 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:54, 04:58](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:11](1139 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:04](2396 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 03:03](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:54] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:16](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:15](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:53](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](574 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:34](574 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:10, 09:45] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:49, 03:24](2025 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 09:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:41, 03:15](1998 MB) + +PASS -- COMPILE 'atml_intel' [11:10, 09:17] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:56, 05:54](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:53, 05:42](1901 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:36, 03:14](1156 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:40] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:52, 06:18](1927 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:24] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:41](1927 MB) + +PASS -- COMPILE 'atmaero_intel' [11:10, 09:41] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 05:01](2012 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:45, 05:25](1786 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:28](1794 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:42] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:26, 16:41](4537 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 04:51] +PASS -- TEST 'control_c48_gnu' [09:36, 07:48](1522 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:31](720 MB) +PASS -- TEST 'control_ras_gnu' [05:19, 04:03](732 MB) +PASS -- TEST 'control_p8_gnu' [06:46, 04:52](1717 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 04:31](1701 MB) +PASS -- TEST 'control_flake_gnu' [06:21, 04:47](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 04:47] +PASS -- TEST 'rap_control_gnu' [10:35, 08:07](1078 MB) +PASS -- TEST 'rap_decomp_gnu' [10:36, 08:44](1095 MB) +PASS -- TEST 'rap_2threads_gnu' [09:48, 07:27](1127 MB) +PASS -- TEST 'rap_restart_gnu' [07:01, 04:09](878 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 08:01](1072 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:11](1071 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:52, 06:08](877 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 04:25](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 04:33](1127 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:59](1011 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 04:16](1060 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:17](874 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:22](924 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:53, 07:58](1068 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:08] +PASS -- TEST 'control_diag_debug_gnu' [03:32, 01:19](1626 MB) +PASS -- TEST 'regional_debug_gnu' [09:28, 07:30](1124 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:18, 02:04](1092 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:57](1082 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:03](1084 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 02:01](1089 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:13](1263 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:28](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:16](1090 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:11](1085 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:16](724 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:24](716 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:45](1700 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:02](1090 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:25](1102 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:34](1089 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:43] +PASS -- TEST 'control_wam_debug_gnu' [07:35, 05:11](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 05:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:57, 07:37](953 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:50, 03:54](942 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 07:00](986 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 03:34](879 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:39, 04:02](940 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 05:44](852 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:29, 02:05](853 MB) +PASS -- TEST 'conus13km_control_gnu' [04:40, 02:36](1257 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:16](1162 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:30, 01:28](937 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 10:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:37](986 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 07:19] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:05](969 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 02:09](965 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:30, 06:13](1272 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 06:04](970 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:28, 03:57](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 06:01](1344 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:23](990 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:50] + +PASS -- COMPILE 's2s_gnu' [18:10, 16:29] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:05, 09:34](3043 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:17] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:41] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:56, 26:13](3058 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 04:01] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:49, 13:17](3028 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 16:08] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:14, 02:19](767 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:10, 08:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:24, 09:51](1079 MB) SYNOPSIS: -Starting Date/Time: 20240917 19:00:54 -Ending Date/Time: 20240917 23:06:40 -Total Time: 04h:06m:31s +Starting Date/Time: 20241008 09:05:13 +Ending Date/Time: 20241008 10:52:36 +Total Time: 01h:47m:58s Compiles Completed: 58/58 Tests Completed: 245/245 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d7b20d75c5..d4e14d11fd 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,31 +1,33 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a04244cbba4aaa7cd72d1546981457f04bea51e1 +a548dfb95738d53c36144e4a347eff7c9a786284 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,257 +38,257 @@ 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-20240909 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4071792 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_16794 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [51:30, 42:19] ( 1 warnings 1380 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:33, 08:12](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:31, 48:45] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [58:22, 20:45](1895 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:26, 22:24](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:08, 10:29](1141 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [58:22, 23:54](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [59:31, 50:07] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [57:04, 20:22](1888 MB) - -PASS -- COMPILE 's2swa_intel' [53:30, 43:23] ( 1 warnings 1399 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [49:21, 09:55](2024 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:35, 09:50](2069 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:18, 05:27](1722 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:24, 09:49](2089 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:20, 05:33](1746 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [46:16, 09:15](2324 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:14, 10:00](2044 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [45:34, 08:17](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:38, 09:42](2062 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [46:24, 07:01](2024 MB) - -PASS -- COMPILE 's2sw_intel' [49:30, 40:06] ( 1 warnings 1284 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [34:28, 07:29](1896 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:39, 09:20](1983 MB) - -PASS -- COMPILE 's2swa_debug_intel' [32:14, 06:13] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [31:24, 16:29](2110 MB) - -PASS -- COMPILE 's2sw_debug_intel' [30:14, 05:53] ( 1413 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [26:10, 11:21](1932 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:22, 36:28] ( 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:37, 05:30](1983 MB) - -PASS -- COMPILE 's2s_intel' [14:21, 37:09] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:16](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:54, 03:28](3004 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:56](2458 MB) - -PASS -- COMPILE 's2swa_faster_intel' [08:32, 32:19] ( 1 warnings 1615 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 09:22](2078 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [01:22, 47:10] ( 1 warnings 1344 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 20:53](1932 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:12, 10:40](1122 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:17, 23:54](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:14, 05:59] ( 1523 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:13, 33:18](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:15, 37:26] ( 1 warnings 1126 remarks ) -PASS -- TEST 'control_flake_intel' [07:30, 04:30](648 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:09, 04:24](1534 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:12, 04:33](1548 MB) -PASS -- TEST 'control_latlon_intel' [10:04, 04:26](1535 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:11, 04:32](1543 MB) -PASS -- TEST 'control_c48_intel' [26:19, 18:03](1703 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:38, 10:19](831 MB) -PASS -- TEST 'control_c192_intel' [18:26, 15:57](1685 MB) -PASS -- TEST 'control_c384_intel' [29:19, 23:04](1813 MB) -PASS -- TEST 'control_c384gdas_intel' [21:08, 13:25](1010 MB) -PASS -- TEST 'control_stochy_intel' [04:30, 02:15](601 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:18](438 MB) -PASS -- TEST 'control_lndp_intel' [04:30, 02:10](608 MB) -PASS -- TEST 'control_iovr4_intel' [06:33, 03:23](602 MB) -PASS -- TEST 'control_iovr5_intel' [06:32, 03:23](605 MB) -PASS -- TEST 'control_p8_intel' [11:25, 05:02](1819 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:36, 04:00](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:21, 04:38](1828 MB) -PASS -- TEST 'control_restart_p8_intel' [04:54, 02:39](1054 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:23, 04:52](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:35](1073 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:26, 04:55](1821 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:16, 04:29](1916 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:11, 08:45](1823 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:23, 05:12](1886 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 04:08](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:29](1848 MB) -PASS -- TEST 'regional_control_intel' [13:03, 07:16](1016 MB) -PASS -- TEST 'regional_restart_intel' [06:35, 03:47](1010 MB) -PASS -- TEST 'regional_decomp_intel' [14:03, 07:25](998 MB) -PASS -- TEST 'regional_2threads_intel' [07:01, 04:33](993 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:42, 07:02](1000 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:37, 06:59](1003 MB) - -PASS -- COMPILE 'rrfs_intel' [38:16, 36:33] ( 3 warnings 1102 remarks ) -PASS -- TEST 'rap_control_intel' [13:49, 10:20](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:12, 05:45](1180 MB) -PASS -- TEST 'rap_decomp_intel' [13:48, 10:55](988 MB) -PASS -- TEST 'rap_2threads_intel' [12:56, 09:50](1078 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 05:13](986 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:56, 10:14](995 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:47, 10:49](984 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:47, 07:31](995 MB) -PASS -- TEST 'hrrr_control_intel' [08:45, 05:22](983 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 05:29](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:52, 04:55](1052 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:47](913 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:13](995 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:35, 12:41](1940 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:35, 12:19](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [36:15, 34:16] ( 1091 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:47, 08:03](974 MB) -PASS -- TEST 'control_ras_intel' [06:26, 04:18](672 MB) - -PASS -- COMPILE 'wam_intel' [36:15, 34:42] ( 994 remarks ) -PASS -- TEST 'control_wam_intel' [16:43, 14:13](1628 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [42:15, 36:38] ( 1294 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:55, 03:35](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:38, 06:31](1003 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:21] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:52](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 03:05](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:28, 03:43](777 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:19](784 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:41, 05:33](1095 MB) -PASS -- TEST 'control_ras_debug_intel' [06:28, 03:23](787 MB) -PASS -- TEST 'control_diag_debug_intel' [06:49, 03:30](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [06:50, 03:23](1863 MB) -PASS -- TEST 'regional_debug_intel' [25:50, 22:12](1040 MB) -PASS -- TEST 'rap_control_debug_intel' [09:30, 06:16](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:30, 06:07](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:30, 06:13](1168 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:30, 06:18](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:30, 06:17](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:41, 06:31](1258 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:22](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:28, 06:23](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:09](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:05](1168 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:26, 06:00](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:08](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 10:04](1158 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:28, 06:01](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:23](1165 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:04](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:49, 10:39](1174 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:03] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:56, 16:33](1644 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:22] ( 3 warnings 1026 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:05](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:39, 08:09](908 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:45, 04:20](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:39, 07:52](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:02](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:38, 04:35](863 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:11](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:19](848 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [35:14, 32:00] ( 3 warnings 1199 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:51, 02:48](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:13](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:31](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:16, 31:18] ( 3 warnings 1046 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:53, 05:28](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:10] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:06](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:26, 05:58](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [20:57, 18:42](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:54, 19:07](895 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:52](1097 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:49, 18:45](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:11, 04:53] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 06:06](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [41:17, 38:47] ( 1 warnings 1418 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:22, 06:49](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:15](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:37, 09:11](750 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:29, 16:04](789 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:41, 17:56](807 MB) -PASS -- TEST 'gnv1_nested_intel' [10:57, 06:20](1666 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:19, 35:19] ( 1265 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:27, 08:28](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:25](743 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:18] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:33](1071 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1048 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](936 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:33](941 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:33](934 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1077 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1080 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:30](931 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:42](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:37](856 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1077 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 05:14](2426 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:25, 05:26](2415 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:05](1019 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:20] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:32](1070 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:49] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 01:17](239 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:04](266 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:26, 00:41](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:17, 35:54] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:07, 04:48](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:18, 35:03] ( 1015 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:12, 04:35](1895 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 36:41] ( 8 warnings 1167 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:48](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:12, 05:47](1868 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 03:10](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:04] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:21](1882 MB) - -PASS -- COMPILE 'atmw_intel' [39:16, 37:23] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:57, 02:19](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [37:15, 34:57] ( 1098 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:02, 05:15](1949 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:18](1719 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:51, 06:19](1739 MB) - -PASS -- COMPILE 'atm_fbh_intel' [33:15, 31:16] ( 3 warnings 996 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:38, 15:13](1026 MB) +PASS -- COMPILE 's2swa_32bit_intel' [59:16, 42:26] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:30, 08:09](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [04:12, 47:56] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:33, 20:43](1888 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [07:39, 21:54](2012 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [55:31, 10:18](1140 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:21, 23:45](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [05:17, 48:26] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:12, 20:21](1888 MB) + +PASS -- COMPILE 's2swa_intel' [59:11, 42:31] ( 1 warnings 1399 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [52:23, 09:44](2067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [52:41, 09:52](2069 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:29, 05:26](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [52:25, 09:50](2083 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [25:29, 05:30](1732 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [45:13, 09:17](2313 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [53:15, 09:57](2062 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [44:33, 08:11](2013 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [45:38, 09:46](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [50:31, 07:00](2027 MB) + +PASS -- COMPILE 's2sw_intel' [57:10, 40:58] ( 1 warnings 1284 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:41, 07:25](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [47:49, 09:29](1968 MB) + +PASS -- COMPILE 's2swa_debug_intel' [43:58, 06:20] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [40:53, 16:27](2079 MB) + +PASS -- COMPILE 's2sw_debug_intel' [48:57, 05:48] ( 1413 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [35:16, 11:22](1922 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:01, 36:12] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:32, 05:36](1960 MB) + +PASS -- COMPILE 's2s_intel' [38:07, 37:17] ( 1 warnings 1033 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [39:10, 10:23](3008 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [32:07, 03:30](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:51, 01:59](2463 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:08, 11:34] ( 1 warnings 1615 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:29, 09:17](2066 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [10:21, 46:21] ( 1 warnings 1344 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [40:31, 20:55](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:28, 10:00](1120 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:23, 22:24](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [29:15, 06:02] ( 1523 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:38, 33:34](1941 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:23, 36:23] ( 1 warnings 1116 remarks ) +PASS -- TEST 'control_flake_intel' [14:25, 04:17](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [16:44, 04:09](1540 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:49, 04:20](1542 MB) +PASS -- TEST 'control_latlon_intel' [17:44, 04:10](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:52, 04:25](1532 MB) +PASS -- TEST 'control_c48_intel' [31:56, 18:06](1699 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:38, 10:11](829 MB) +PASS -- TEST 'control_c192_intel' [28:03, 15:45](1694 MB) +PASS -- TEST 'control_c384_intel' [32:03, 23:00](1816 MB) +PASS -- TEST 'control_c384gdas_intel' [24:49, 13:14](1026 MB) +PASS -- TEST 'control_stochy_intel' [12:25, 02:04](601 MB) +PASS -- TEST 'control_stochy_restart_intel' [11:26, 01:17](441 MB) +PASS -- TEST 'control_lndp_intel' [12:26, 01:59](601 MB) +PASS -- TEST 'control_iovr4_intel' [13:28, 03:10](603 MB) +PASS -- TEST 'control_iovr5_intel' [12:30, 03:15](606 MB) +PASS -- TEST 'control_p8_intel' [13:58, 04:44](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:15, 03:57](1830 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:53, 04:39](1835 MB) +PASS -- TEST 'control_restart_p8_intel' [09:47, 02:42](1054 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:05, 04:37](1819 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [09:51, 02:39](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:55, 04:46](1816 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:54, 04:28](1913 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:47, 08:33](1832 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:52, 05:08](1893 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:59, 03:56](1846 MB) +PASS -- TEST 'merra2_thompson_intel' [17:00, 04:19](1841 MB) +PASS -- TEST 'regional_control_intel' [17:43, 07:08](1005 MB) +PASS -- TEST 'regional_restart_intel' [09:38, 03:50](1009 MB) +PASS -- TEST 'regional_decomp_intel' [17:40, 07:33](996 MB) +PASS -- TEST 'regional_2threads_intel' [06:37, 04:16](995 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [16:49, 07:12](1000 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [16:40, 07:08](1009 MB) + +PASS -- COMPILE 'rrfs_intel' [26:26, 34:20] ( 3 warnings 1092 remarks ) +PASS -- TEST 'rap_control_intel' [11:54, 10:10](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:10, 05:25](1177 MB) +PASS -- TEST 'rap_decomp_intel' [12:46, 10:38](979 MB) +PASS -- TEST 'rap_2threads_intel' [11:54, 09:41](1074 MB) +PASS -- TEST 'rap_restart_intel' [13:55, 05:14](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:05](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:40](986 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [14:51, 07:28](991 MB) +PASS -- TEST 'hrrr_control_intel' [07:43, 05:09](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:43, 05:17](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:52, 04:47](1047 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:32, 02:43](908 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:08, 10:06](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:32, 13:27](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 12:59](1931 MB) + +PASS -- COMPILE 'csawmg_intel' [02:20, 34:17] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [17:49, 08:02](960 MB) +PASS -- TEST 'control_ras_intel' [06:31, 04:16](673 MB) + +PASS -- COMPILE 'wam_intel' [53:17, 34:42] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [23:55, 14:12](1616 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [43:18, 36:21] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:57, 03:42](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [15:37, 06:42](998 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 08:30] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:43, 02:50](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:48, 02:48](1567 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:24, 03:49](775 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:27, 03:28](778 MB) +PASS -- TEST 'control_csawmg_debug_intel' [12:41, 05:32](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [09:26, 03:31](785 MB) +PASS -- TEST 'control_diag_debug_intel' [09:41, 03:26](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [09:44, 03:11](1857 MB) +PASS -- TEST 'regional_debug_intel' [27:47, 22:02](1034 MB) +PASS -- TEST 'rap_control_debug_intel' [10:29, 06:08](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:32, 06:00](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:24, 06:03](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 06:06](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:23, 06:08](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 06:23](1247 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:12](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:12](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:08](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:03](1170 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:57](1157 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:04](1172 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:59](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [14:27, 07:24](1164 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:26, 06:16](1164 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:50, 10:33](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:19] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [22:56, 16:41](1636 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:14, 30:41] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:05, 05:17](1039 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:38, 08:24](903 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:40, 04:26](866 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:53, 07:58](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:46, 03:58](904 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:36, 04:45](852 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:40, 06:08](891 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:29, 02:18](845 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:16, 31:54] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:03, 02:45](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:39, 01:15](1038 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 01:32](1008 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:13, 31:08] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 05:24](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 05:11] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:25, 06:13](1043 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:26, 06:00](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [24:58, 19:05](1134 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:58, 19:02](864 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:43, 10:58](1095 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:41, 18:53](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:13, 04:59] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:14](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [46:17, 39:27] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:22, 06:42](695 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:08](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 08:59](751 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 15:54](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 17:42](803 MB) +PASS -- TEST 'gnv1_nested_intel' [08:53, 05:53](1671 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:16, 35:26] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:36](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:32, 08:37](743 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 08:11] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 03:37](1074 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:10](1046 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:31](948 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 03:35](932 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:35](935 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 03:39](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:25, 03:31](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:37](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:36](850 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1057 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:02](2376 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:05](2431 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 08:06](1041 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:22] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:22, 03:34](1063 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:13, 01:47] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:07](237 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:57](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:29, 00:40](263 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:16, 35:55] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:14, 04:49](1905 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [36:18, 35:08] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:20, 04:34](1895 MB) + +PASS -- COMPILE 'atml_intel' [39:17, 36:51] ( 8 warnings 1157 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:26, 05:32](1852 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [31:25, 05:27](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 03:03](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:14] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:13, 07:12](1881 MB) + +PASS -- COMPILE 'atmw_intel' [04:18, 36:17] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [24:56, 02:20](1853 MB) + +PASS -- COMPILE 'atmaero_intel' [55:18, 35:23] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [22:11, 05:14](1941 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:12, 06:12](1704 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [26:02, 06:20](1713 MB) + +PASS -- COMPILE 'atm_fbh_intel' [39:16, 31:15] ( 3 warnings 996 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:38, 15:10](1013 MB) SYNOPSIS: -Starting Date/Time: 20240919 03:36:02 -Ending Date/Time: 20240919 09:46:13 -Total Time: 06h:10m:46s +Starting Date/Time: 20241008 20:28:25 +Ending Date/Time: 20241009 11:54:15 +Total Time: 15h:26m:25s Compiles Completed: 37/37 Tests Completed: 165/165 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 70cc1e8185..3cf2788835 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,31 +1,33 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -4ac63b06501f964ea8feb3cb82fe4bd948d23093 +229038624f3cd9854cdb4f2a8b235eee207416d3 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,290 +38,362 @@ 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-20240909 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3988982 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1750568 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:33, 14:36](2092 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:54] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:39, 18:08](1950 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [51:42, 19:56](2124 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [42:32, 10:41](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:39, 19:59](1874 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:01, 17:46](1949 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 09:12] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:43, 28:13](1933 MB) - -PASS -- COMPILE 's2swa_intel' [18:11, 16:37] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [23:35, 14:38](2155 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:44, 14:44](2153 MB) -PASS -- TEST 'cpld_restart_p8_intel' [34:03, 07:59](1806 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [23:35, 14:41](2169 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [35:07, 08:04](1708 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:32, 13:38](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:35, 14:24](2144 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:32, 12:30](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:44, 14:12](2153 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:35, 16:28](2720 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [35:40, 08:55](2715 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:49, 10:57](3685 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:31, 07:11](3508 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:28, 06:12](2100 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 16:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:19, 13:45](1980 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:18, 07:54](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 09:12] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:16, 13:36](2186 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:10, 08:24] ( 1413 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:18, 09:09](1999 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:11, 14:59] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 04:45](2043 MB) - -PASS -- COMPILE 's2s_intel' [19:11, 16:48] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [16:09, 08:44](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:06, 03:27](3032 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:02, 01:52](2487 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:59] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:52, 14:53](2148 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 18:19](2009 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [34:44, 09:56](1240 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:39, 20:43](1931 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 07:19] ( 1523 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:11, 29:57](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:11, 13:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [31:34, 03:50](698 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:50, 03:38](1574 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:51, 03:40](1583 MB) -PASS -- TEST 'control_latlon_intel' [29:39, 03:36](1579 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:55, 03:33](1580 MB) -PASS -- TEST 'control_c48_intel' [51:56, 14:49](1715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [43:50, 08:08](846 MB) -PASS -- TEST 'control_c192_intel' [38:59, 13:31](1750 MB) -PASS -- TEST 'control_c384_intel' [43:27, 16:58](1990 MB) -PASS -- TEST 'control_c384gdas_intel' [37:12, 09:58](1342 MB) -PASS -- TEST 'control_stochy_intel' [37:34, 02:27](649 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:43, 01:25](479 MB) -PASS -- TEST 'control_lndp_intel' [34:29, 02:12](648 MB) -PASS -- TEST 'control_iovr4_intel' [31:32, 03:14](649 MB) -PASS -- TEST 'control_iovr5_intel' [30:46, 03:31](649 MB) -PASS -- TEST 'control_p8_intel' [30:14, 04:39](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:26, 04:12](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [23:33, 04:41](1876 MB) -PASS -- TEST 'control_restart_p8_intel' [11:40, 02:29](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [22:21, 04:53](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:53, 02:41](1127 MB) -PASS -- TEST 'control_decomp_p8_intel' [18:26, 05:21](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:12, 04:46](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [20:42, 08:11](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [18:44, 05:56](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [15:02, 04:16](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [12:49, 04:25](1889 MB) -PASS -- TEST 'regional_control_intel' [14:46, 07:19](1081 MB) -PASS -- TEST 'regional_restart_intel' [07:45, 03:59](1078 MB) -PASS -- TEST 'regional_decomp_intel' [15:44, 07:41](1073 MB) -PASS -- TEST 'regional_2threads_intel' [11:51, 06:00](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [10:50, 07:02](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:16, 07:14](1068 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 07:13](1087 MB) -PASS -- TEST 'regional_wofs_intel' [11:51, 08:18](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [16:11, 13:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [37:28, 08:36](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:04, 05:26](1250 MB) -PASS -- TEST 'rap_decomp_intel' [38:04, 08:52](1023 MB) -PASS -- TEST 'rap_2threads_intel' [23:23, 08:47](1154 MB) -PASS -- TEST 'rap_restart_intel' [08:44, 04:32](1037 MB) -PASS -- TEST 'rap_sfcdiff_intel' [37:28, 08:28](1051 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:02, 08:48](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:42, 06:19](1070 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:08](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:18, 04:31](1018 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:02, 04:17](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:27, 02:29](940 MB) -PASS -- TEST 'rrfs_v1beta_intel' [18:42, 08:42](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [18:38, 10:12](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:40, 10:02](2021 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 12:33] -PASS -- TEST 'control_csawmg_intel' [20:39, 06:37](1018 MB) -PASS -- TEST 'control_ras_intel' [18:24, 03:31](709 MB) - -PASS -- COMPILE 'wam_intel' [14:11, 12:42] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [26:48, 12:45](1653 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 13:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:24, 03:23](1873 MB) -PASS -- TEST 'regional_control_faster_intel' [12:12, 06:34](1076 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:18] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:33, 02:22](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:14, 02:23](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:33, 03:14](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:24, 02:56](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:43, 04:54](1132 MB) -PASS -- TEST 'control_ras_debug_intel' [09:28, 02:51](828 MB) -PASS -- TEST 'control_diag_debug_intel' [08:57, 02:56](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [09:50, 04:13](1896 MB) -PASS -- TEST 'regional_debug_intel' [25:51, 18:25](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [10:50, 05:00](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:36, 05:28](1201 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:30, 05:33](1212 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 05:42](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:34, 05:33](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:37, 05:40](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:26, 05:51](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:42](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 05:40](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:23](1208 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:57](1212 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:09](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:17](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 04:49](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:40](1204 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:32, 05:02](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:40, 14:59](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:11, 06:39] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [27:51, 13:16](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 12:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 05:23](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:22, 07:29](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:14, 04:17](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:58, 07:39](1072 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:53, 03:57](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 04:20](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:36, 05:25](971 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:45, 02:06](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:23, 02:48](1162 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:23](1115 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:30](1063 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:11, 13:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:46, 04:35](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 06:47] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:28, 04:56](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 04:46](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [20:13, 14:49](1234 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 15:14](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:55](1168 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:56, 14:57](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 06:38] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:01](1137 MB) - -PASS -- COMPILE 'hafsw_intel' [18:12, 14:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:25](746 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:41, 07:06](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:44, 07:46](813 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:31, 25:19](851 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:39, 29:00](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:17, 07:06](499 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:48, 08:30](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:01, 03:38](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:47, 09:51](481 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:59, 04:45](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:05, 04:35](524 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:48](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:44, 01:37](399 MB) -PASS -- TEST 'gnv1_nested_intel' [09:39, 04:24](1726 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:12, 07:26] ( 1465 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:05, 14:09](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 14:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:25, 12:56](642 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:20, 13:01](732 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 14:33] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 08:42](718 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:12, 13:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:23, 07:42](811 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:18, 07:42](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:29](1203 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:12, 09:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:59](1116 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:53](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:57](1026 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 02:56](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:01](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:01](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:59](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 06:44](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:22, 06:28](1008 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:00](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:26](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 04:24](2451 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 05:38] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 06:38](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 08:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:03](1150 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:12, 01:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:04](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:39](321 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:11, 13:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:21, 04:26](1965 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 13:08] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:03, 04:13](1940 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 13:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:37, 05:00](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 05:00](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 02:52](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:11, 08:02] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:05](1888 MB) - -PASS -- COMPILE 'atmw_intel' [20:11, 14:06] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:13](1900 MB) - -PASS -- COMPILE 'atmaero_intel' [20:11, 13:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:14, 04:37](1987 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:17, 05:19](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 05:29](1779 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:10, 06:43] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:05, 20:23](4556 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:12, 12:17] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:33, 13:50](1084 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:12, 17:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:25, 15:06](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:13, 21:05] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:02, 18:05](1942 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:15, 19:06](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:08, 09:06](1215 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:59, 20:01](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:12, 23:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:53, 17:44](1940 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:12, 08:35] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:55, 28:44](1932 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:14, 14:11](2135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:11, 15:02](2131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:49, 07:48](1800 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 15:20](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:14, 08:01](1692 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:48, 14:08](2411 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:14, 14:32](2123 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:00, 12:21](2033 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:23, 15:05](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:48, 16:41](2701 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:57, 09:12](2699 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:07, 14:38](3664 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:34, 07:03](3489 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:58, 06:35](2098 MB) + +PASS -- COMPILE 's2sw_intel' [18:12, 16:55] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [17:16, 14:26](1970 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:23, 09:57](2025 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:14] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:49, 14:58](2166 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 07:54] ( 1413 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:36, 10:21](1992 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:12, 14:59] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:40, 05:55](2031 MB) + +PASS -- COMPILE 's2s_intel' [16:12, 14:59] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:27, 12:36](3039 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:19, 04:03](3024 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:33, 02:15](2476 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:15, 17:18] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:50, 14:50](2139 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 20:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:19, 18:18](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 09:11](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:11, 20:28](1936 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:14, 10:25] ( 1523 warnings 2000 remarks ) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:15, 15:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:44](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:37, 03:35](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:43, 03:38](1580 MB) +PASS -- TEST 'control_latlon_intel' [05:41, 03:35](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 03:35](1578 MB) +PASS -- TEST 'control_c48_intel' [16:56, 14:43](1708 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:11](839 MB) +PASS -- TEST 'control_c192_intel' [15:05, 13:09](1740 MB) +PASS -- TEST 'control_c384_intel' [27:09, 24:07](1976 MB) +PASS -- TEST 'control_c384gdas_intel' [13:35, 09:56](1332 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:50](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:05](475 MB) +PASS -- TEST 'control_lndp_intel' [03:21, 01:44](643 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:44](636 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:43](639 MB) +PASS -- TEST 'control_p8_intel' [07:09, 04:15](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:19, 03:39](1874 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:27, 04:09](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [06:19, 02:26](1090 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:18, 04:18](1848 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:27, 02:20](1126 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:16, 04:13](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:30](1944 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:45, 07:23](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:38, 04:55](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:35, 03:40](1881 MB) +PASS -- TEST 'merra2_thompson_intel' [06:39, 03:52](1872 MB) +PASS -- TEST 'regional_control_intel' [08:33, 06:35](1075 MB) +PASS -- TEST 'regional_restart_intel' [05:35, 04:00](1075 MB) +PASS -- TEST 'regional_decomp_intel' [09:39, 07:17](1066 MB) +PASS -- TEST 'regional_2threads_intel' [07:38, 05:16](1065 MB) +PASS -- TEST 'regional_noquilt_intel' [09:10, 06:38](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:50, 06:39](1077 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:53, 06:43](1075 MB) +PASS -- TEST 'regional_wofs_intel' [09:44, 08:04](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [16:15, 14:37] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:58, 08:31](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:01, 05:15](1246 MB) +PASS -- TEST 'rap_decomp_intel' [10:58, 08:46](1020 MB) +PASS -- TEST 'rap_2threads_intel' [10:58, 08:39](1147 MB) +PASS -- TEST 'rap_restart_intel' [07:34, 04:25](1032 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:57, 08:25](1048 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:57, 08:42](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 06:14](1068 MB) +PASS -- TEST 'hrrr_control_intel' [07:05, 04:23](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:27](1016 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:06, 04:13](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:24](946 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:23, 08:26](1032 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:27, 10:00](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:37](2012 MB) + +PASS -- COMPILE 'csawmg_intel' [14:14, 12:57] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:39](1017 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:31](708 MB) + +PASS -- COMPILE 'wam_intel' [15:12, 14:02] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:53, 12:51](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:14, 14:03] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 03:21](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [08:41, 06:29](1074 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 10:03] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:19](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:17](1595 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:23, 02:47](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:33, 04:20](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](824 MB) +PASS -- TEST 'control_diag_debug_intel' [04:47, 02:57](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 02:58](1887 MB) +PASS -- TEST 'regional_debug_intel' [21:45, 17:40](1096 MB) +PASS -- TEST 'rap_control_debug_intel' [07:32, 05:03](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 05:07](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 05:21](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [11:23, 07:56](1203 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:22, 05:09](1203 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:45, 05:16](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:05](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:09](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:27](1205 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:05](1199 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:57](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:59](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:04](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:55](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 06:04](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:04](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:37](1202 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:13, 06:42] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:44, 13:16](1676 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 12:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 04:58](1120 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:20, 07:14](993 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 03:50](919 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:52, 07:28](1067 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:40](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:10, 03:57](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:30, 05:20](971 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:42, 02:01](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:57, 02:43](1155 MB) +PASS -- TEST 'conus13km_2threads_intel' [12:53, 01:13](1101 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [14:47, 01:33](1062 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:34](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:34] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:20, 08:11](1078 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:24, 04:50](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [16:55, 14:53](1227 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:46, 15:15](919 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:39, 08:33](1183 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:44, 14:45](1297 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:26, 04:58](1131 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 14:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:18, 09:28](736 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:30, 06:28](1114 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:25, 07:40](817 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:17, 24:24](850 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:31, 28:46](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:07, 10:35](489 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:34, 08:32](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:57, 03:30](375 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:39, 12:38](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:54, 04:45](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:57, 04:30](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [18:53, 05:43](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:33, 01:33](397 MB) +PASS -- TEST 'gnv1_nested_intel' [18:16, 04:19](1717 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 09:59] ( 1465 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:03, 13:12](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:10, 12:56](655 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:06, 13:18](719 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 14:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:33, 09:05](703 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 13:12] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:19, 07:32](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:18, 07:32](800 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:57, 16:23](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:58] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:20, 03:00](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:20, 01:57](1098 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [12:17, 02:50](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:18, 02:53](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:20, 02:54](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:18, 03:00](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:18, 02:40](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:17, 02:51](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:09, 06:31](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:06, 06:28](1001 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:18, 02:56](1139 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:18, 04:20](2399 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [14:19, 04:22](2451 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:10, 05:28] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [16:19, 06:17](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:18, 03:00](1146 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:32, 01:04](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:09](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:30, 00:35](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:34] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [07:31, 00:37](562 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:21](446 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 13:29] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [11:10, 04:11](1961 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:10, 14:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:58, 03:58](1944 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:03] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:27, 04:55](1856 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:25, 04:54](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:48](1067 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 07:42] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:36, 05:55](1890 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:26, 02:16](1907 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:18] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:18, 04:38](1975 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:18, 05:23](1743 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:10, 05:28](1766 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:49] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:56, 22:41](4497 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:10, 12:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [19:29, 14:08](1079 MB) SYNOPSIS: -Starting Date/Time: 20240919 08:53:06 -Ending Date/Time: 20240919 11:17:22 -Total Time: 02h:25m:06s -Compiles Completed: 42/42 -Tests Completed: 186/186 +Starting Date/Time: 20241008 09:04:00 +Ending Date/Time: 20241008 11:37:32 +Total Time: 02h:34m:11s +Compiles Completed: 43/43 +Tests Completed: 187/188 +Failed Tests: +* TEST cpld_debug_pdlib_p8_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /work/noaa/stmp/zshrader/rt-2146/tests/logs/log_orion/run_cpld_debug_pdlib_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +229038624f3cd9854cdb4f2a8b235eee207416d3 + +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) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) + 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-20241001 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2207460 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:10, 08:07] ( 1523 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:28, 29:57](1966 MB) + +SYNOPSIS: +Starting Date/Time: 20241008 14:18:04 +Ending Date/Time: 20241008 15:03:43 +Total Time: 00h:45m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f4d5157f84..3f3dca3ed4 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,31 +1,33 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -e3bd67a093b800f028092d252373abe1b7a7602b +73c9d3c08bd18fa47227bd6c2ccb055397ceba95 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) - 635d9a100a736bd8d14ad091e879d5da6e4eb2bd CICE-interface/CICE (CICE6.0.0-373-g635d9a1) - 4c87095256c1c599c3ccaa857a95744158751a60 CICE-interface/CICE/icepack (Icepack1.1.0-191-g4c87095) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) + 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) + 0609c42d5345afdf69c41d476e86a35f41050764 CMEPS-interface/CMEPS (cmeps_v0.4.1-2348-g0609c42) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a9364591091c836984a40107729720705847c195 FV3 (heads/develop) - ac3055eff06099d61cd65e18bc4f0353ffd83f46 FV3/atmos_cubed_sphere (201912_public_release-405-gac3055e) + 1aba87cb308fb52912e7fe6dd6b53d0ce7077554 FV3 (heads/develop) + 24686a2561f1414eb86c7b97c93960c36e4257b1 FV3/atmos_cubed_sphere (201912_public_release-406-g24686a2) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - b6c433354394bd8ed5e46692a81149441ff4ae38 FV3/ccpp/physics (EP4-873-gb6c43335) + 5a363134a77535f35594e56b58ba1e6141a23d2b FV3/ccpp/physics (EP4-884-g5a363134) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) + 6f5dd627d124ae94bb5ed7f5afd22f82c470b1b7 FV3/upp (upp_v10.2.0-230-g6f5dd627) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) + 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) - 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + c7004b658b9dae9fc473d4e6511dfc1cf8e6a7bd WW3 (6.07.1-347-gc7004b65) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,239 +38,239 @@ 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: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3481 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241001 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_64926 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:27, 11:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:14, 02:21](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [44:13, 02:59](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:41, 02:35](1843 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:37, 03:05](979 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:14, 02:29](1786 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [44:14, 02:22](1815 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:26] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [50:21, 02:48](1840 MB) - -PASS -- COMPILE 's2swa_intel' [13:28, 11:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [44:13, 02:34](3130 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [44:13, 02:55](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [32:35, 02:20](3057 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [44:13, 02:39](3149 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [32:35, 02:16](3074 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [44:13, 02:27](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [44:13, 02:46](3123 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [44:14, 02:21](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [44:13, 02:56](3128 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [44:22, 06:53](4115 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:36, 05:15](4263 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [44:13, 02:53](3111 MB) - -PASS -- COMPILE 's2sw_intel' [13:28, 11:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [44:12, 01:47](1830 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [44:12, 02:50](1885 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:15, 02:57](1896 MB) - -PASS -- COMPILE 's2s_intel' [12:27, 10:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [45:13, 01:48](2864 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [45:13, 02:20](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [40:01, 02:17](2277 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [39:08, 03:32](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:12, 02:33](1827 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:57, 02:26](977 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:38, 02:37](1801 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:21, 05:02] ( 1503 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:58, 01:57](1850 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:27, 09:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [34:48, 02:21](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:48, 02:15](1467 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:48, 02:08](1473 MB) -PASS -- TEST 'control_latlon_intel' [34:48, 02:04](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:48, 02:15](1475 MB) -PASS -- TEST 'control_c48_intel' [34:47, 02:29](1574 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [34:47, 02:00](690 MB) -PASS -- TEST 'control_c192_intel' [34:48, 02:09](1596 MB) -PASS -- TEST 'control_c384_intel' [34:52, 02:34](1879 MB) -PASS -- TEST 'control_c384gdas_intel' [34:25, 03:48](1063 MB) -PASS -- TEST 'control_stochy_intel' [34:19, 01:27](526 MB) -PASS -- TEST 'control_stochy_restart_intel' [30:49, 02:09](330 MB) -PASS -- TEST 'control_lndp_intel' [33:25, 01:31](523 MB) -PASS -- TEST 'control_iovr4_intel' [32:35, 01:49](520 MB) -PASS -- TEST 'control_iovr5_intel' [32:27, 01:54](521 MB) -PASS -- TEST 'control_p8_intel' [32:19, 02:39](1762 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [32:19, 03:12](1759 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [30:11, 02:30](1756 MB) -PASS -- TEST 'control_restart_p8_intel' [25:28, 02:49](910 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:56, 02:25](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [23:26, 02:53](925 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:54, 02:26](1751 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:46, 02:29](1843 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:45, 01:57](1759 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [28:42, 02:59](1812 MB) -PASS -- TEST 'control_p8_mynn_intel' [28:12, 02:40](1771 MB) -PASS -- TEST 'merra2_thompson_intel' [27:53, 02:33](1767 MB) -PASS -- TEST 'regional_control_intel' [27:43, 02:09](838 MB) -PASS -- TEST 'regional_restart_intel' [19:56, 01:22](844 MB) -PASS -- TEST 'regional_decomp_intel' [27:14, 01:57](840 MB) -PASS -- TEST 'regional_2threads_intel' [26:53, 01:53](898 MB) -PASS -- TEST 'regional_noquilt_intel' [26:46, 01:21](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [26:45, 02:19](839 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [25:34, 01:24](838 MB) -PASS -- TEST 'regional_wofs_intel' [25:26, 01:38](1570 MB) - -PASS -- COMPILE 'rrfs_intel' [10:27, 08:32] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [23:39, 02:59](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:43, 02:02](1048 MB) -PASS -- TEST 'rap_decomp_intel' [22:21, 02:16](911 MB) -PASS -- TEST 'rap_2threads_intel' [22:21, 02:19](995 MB) -PASS -- TEST 'rap_restart_intel' [13:11, 02:16](776 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:28, 03:03](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:25, 02:49](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:56, 02:49](780 MB) -PASS -- TEST 'hrrr_control_intel' [21:15, 02:02](905 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:08, 01:53](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:02, 02:19](976 MB) -PASS -- TEST 'hrrr_control_restart_intel' [15:04, 02:07](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [20:59, 03:07](903 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [20:46, 01:44](1862 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:41, 02:05](1848 MB) - -PASS -- COMPILE 'csawmg_intel' [09:26, 07:56] -PASS -- TEST 'control_csawmg_intel' [35:47, 01:39](864 MB) -PASS -- TEST 'control_ras_intel' [35:47, 01:58](559 MB) - -PASS -- COMPILE 'wam_intel' [09:25, 08:00] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [34:49, 01:36](1563 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:27, 08:07] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [20:30, 02:58](1759 MB) -PASS -- TEST 'regional_control_faster_intel' [20:21, 01:19](840 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:40] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [19:59, 01:39](1495 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:52, 01:47](1502 MB) -PASS -- TEST 'control_stochy_debug_intel' [19:47, 01:45](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [19:10, 02:04](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:52, 01:22](1008 MB) -PASS -- TEST 'control_ras_debug_intel' [18:26, 02:03](709 MB) -PASS -- TEST 'control_diag_debug_intel' [17:51, 02:10](1558 MB) -PASS -- TEST 'control_debug_p8_intel' [17:25, 02:17](1800 MB) -PASS -- TEST 'regional_debug_intel' [16:23, 01:27](891 MB) -PASS -- TEST 'rap_control_debug_intel' [15:32, 01:41](1089 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:21, 01:52](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:18, 01:47](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [15:05, 01:41](1084 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:04, 01:42](1088 MB) -PASS -- TEST 'rap_diag_debug_intel' [15:04, 01:37](1171 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:00, 01:38](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:17, 01:37](1089 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:07, 01:39](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:43, 01:40](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [13:43, 01:47](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:18, 01:42](1082 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:10, 01:27](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:55, 01:45](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:21, 01:54](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:18, 01:42](1087 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:08, 02:52](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:23, 04:25] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [37:49, 02:11](1581 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:51] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:02, 02:19](920 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:33, 02:12](785 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:56, 03:27](784 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:33, 02:09](842 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:30, 03:17](829 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 02:49](781 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:07, 02:31](684 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:00, 01:21](668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:35, 07:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:52, 02:07](994 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:57](993 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:48, 01:45](864 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:57] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:03, 02:23](815 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:30] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:44, 01:58](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:44, 02:08](954 MB) -PASS -- TEST 'conus13km_debug_intel' [07:35, 01:50](1043 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 01:30](716 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 01:18](1049 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [07:25, 01:41](1114 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:23] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:45, 01:56](989 MB) - -PASS -- COMPILE 'hafsw_intel' [11:33, 09:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:47, 03:02](602 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 02:10](945 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:11, 02:46](645 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:10, 02:39](671 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:57, 02:31](693 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:46, 02:05](461 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:28, 03:11](392 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:38](288 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:08, 03:39](364 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 02:35](408 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:51, 01:53](400 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:47, 01:53](486 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:05, 01:28](311 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:22, 04:52] ( 1447 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:41, 02:27](506 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [10:28, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:36, 02:45](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:25, 02:41](704 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:29, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:16, 02:17](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:27, 08:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [00:58, 03:09](639 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:56, 03:09](629 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:29, 01:24](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:31, 09:50] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [00:04, 01:40](1820 MB) - -PASS -- COMPILE 'atml_intel' [10:28, 08:58] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 05:23] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:13] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [00:04, 02:20](3023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [59:32, 02:57](2903 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:30, 02:51](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:21, 04:28] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [59:04, 02:29](4444 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:32, 12:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [01:35, 02:14](3088 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:34, 12:08] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [01:33, 02:45](1810 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:08, 03:30](1843 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [42:07, 03:08](972 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:34, 03:14](1786 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:36, 11:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [01:31, 02:06](1811 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:21] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [07:45, 03:05](1831 MB) + +PASS -- COMPILE 's2swa_intel' [12:33, 11:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [02:33, 02:39](3120 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [02:33, 02:48](3117 MB) +PASS -- TEST 'cpld_restart_p8_intel' [50:58, 02:05](3040 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [02:33, 02:32](3139 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [50:58, 03:05](3064 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [02:33, 02:17](3354 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [02:33, 02:41](3111 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [02:34, 02:54](3059 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [02:33, 02:34](3114 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [02:42, 05:50](4112 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [42:44, 05:58](4257 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [02:33, 03:00](3094 MB) + +PASS -- COMPILE 's2sw_intel' [12:33, 10:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [02:33, 02:47](1824 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:33, 02:35](1880 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:33, 10:40] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:33, 03:11](1873 MB) + +PASS -- COMPILE 's2s_intel' [12:33, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [02:32, 01:56](2868 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:32, 02:36](2873 MB) +PASS -- TEST 'cpld_restart_c48_intel' [57:14, 02:15](2283 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:40, 16:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [56:26, 02:48](3125 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:33, 11:12] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:33, 02:53](1833 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:47, 02:09](984 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:45, 02:48](1794 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:13] ( 1503 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [00:24, 02:38](1844 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:25, 08:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [51:53, 02:17](567 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [51:53, 01:59](1462 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [51:38, 01:56](1471 MB) +PASS -- TEST 'control_latlon_intel' [50:58, 02:04](1471 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:51, 02:12](1462 MB) +PASS -- TEST 'control_c48_intel' [50:49, 02:17](1568 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [50:47, 01:52](695 MB) +PASS -- TEST 'control_c192_intel' [47:30, 02:03](1593 MB) +PASS -- TEST 'control_c384_intel' [47:24, 03:09](1880 MB) +PASS -- TEST 'control_c384gdas_intel' [47:19, 03:41](1067 MB) +PASS -- TEST 'control_stochy_intel' [46:37, 01:33](524 MB) +PASS -- TEST 'control_stochy_restart_intel' [42:55, 02:07](375 MB) +PASS -- TEST 'control_lndp_intel' [46:37, 01:40](524 MB) +PASS -- TEST 'control_iovr4_intel' [46:37, 01:42](517 MB) +PASS -- TEST 'control_iovr5_intel' [46:25, 01:41](518 MB) +PASS -- TEST 'control_p8_intel' [46:09, 02:16](1758 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [46:02, 02:47](1756 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [45:46, 02:22](1755 MB) +PASS -- TEST 'control_restart_p8_intel' [39:26, 02:45](907 MB) +PASS -- TEST 'control_noqr_p8_intel' [45:22, 01:55](1762 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [37:44, 02:47](918 MB) +PASS -- TEST 'control_decomp_p8_intel' [45:18, 02:44](1754 MB) +PASS -- TEST 'control_2threads_p8_intel' [45:05, 02:36](1842 MB) +PASS -- TEST 'control_p8_lndp_intel' [44:48, 01:34](1761 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [44:39, 02:47](1814 MB) +PASS -- TEST 'control_p8_mynn_intel' [43:12, 02:52](1764 MB) +PASS -- TEST 'merra2_thompson_intel' [43:11, 02:46](1767 MB) +PASS -- TEST 'regional_control_intel' [42:57, 02:14](843 MB) +PASS -- TEST 'regional_restart_intel' [34:09, 01:12](835 MB) +PASS -- TEST 'regional_decomp_intel' [42:54, 02:00](836 MB) +PASS -- TEST 'regional_2threads_intel' [41:57, 01:47](892 MB) +PASS -- TEST 'regional_noquilt_intel' [41:44, 02:12](1165 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [39:24, 01:28](835 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [39:11, 02:16](840 MB) +PASS -- TEST 'regional_wofs_intel' [39:04, 02:08](1567 MB) + +PASS -- COMPILE 'rrfs_intel' [10:26, 08:18] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [39:00, 03:03](904 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:21, 02:03](1049 MB) +PASS -- TEST 'rap_decomp_intel' [38:18, 02:13](905 MB) +PASS -- TEST 'rap_2threads_intel' [37:47, 02:30](986 MB) +PASS -- TEST 'rap_restart_intel' [28:18, 02:11](773 MB) +PASS -- TEST 'rap_sfcdiff_intel' [37:39, 02:55](901 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [36:52, 02:41](901 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [27:14, 02:51](772 MB) +PASS -- TEST 'hrrr_control_intel' [36:03, 02:33](900 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [35:51, 03:10](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [35:34, 02:28](982 MB) +PASS -- TEST 'hrrr_control_restart_intel' [29:24, 02:01](728 MB) +PASS -- TEST 'rrfs_v1beta_intel' [35:18, 02:56](896 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [34:52, 01:35](1857 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [34:10, 02:02](1842 MB) + +PASS -- COMPILE 'csawmg_intel' [09:25, 07:58] +PASS -- TEST 'control_csawmg_intel' [53:08, 02:25](856 MB) +PASS -- TEST 'control_ras_intel' [53:08, 01:42](554 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:09, 01:24](1549 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:10] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [33:58, 02:55](1760 MB) +PASS -- TEST 'regional_control_faster_intel' [33:54, 02:09](840 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 07:45] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:12, 01:39](1489 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:12, 01:45](1497 MB) +PASS -- TEST 'control_stochy_debug_intel' [52:12, 01:45](700 MB) +PASS -- TEST 'control_lndp_debug_intel' [52:12, 02:03](696 MB) +PASS -- TEST 'control_csawmg_debug_intel' [52:12, 01:28](1001 MB) +PASS -- TEST 'control_ras_debug_intel' [52:12, 01:59](705 MB) +PASS -- TEST 'control_diag_debug_intel' [52:12, 02:20](1547 MB) +PASS -- TEST 'control_debug_p8_intel' [52:12, 02:14](1783 MB) +PASS -- TEST 'regional_debug_intel' [52:11, 02:08](880 MB) +PASS -- TEST 'rap_control_debug_intel' [33:44, 01:37](1081 MB) +PASS -- TEST 'hrrr_control_debug_intel' [33:28, 01:48](1076 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [33:16, 01:36](1076 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [32:21, 01:36](1076 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:15, 01:31](1078 MB) +PASS -- TEST 'rap_diag_debug_intel' [31:26, 01:32](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:09, 01:39](1078 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:07, 01:36](1079 MB) +PASS -- TEST 'rap_lndp_debug_intel' [31:02, 01:41](1083 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:39, 01:36](1080 MB) +PASS -- TEST 'rap_noah_debug_intel' [29:47, 01:42](1075 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [29:23, 01:36](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:23, 01:23](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [29:18, 01:37](1073 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [29:09, 02:00](1079 MB) +PASS -- TEST 'rap_flake_debug_intel' [28:28, 01:41](1080 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:18, 02:42](1084 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:21, 04:37] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [55:11, 02:00](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 07:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:19, 02:14](911 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:27, 03:15](776 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:26, 03:20](778 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:13, 02:30](840 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:07, 03:21](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:45, 02:41](774 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:53, 02:31](677 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:27, 02:18](656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [25:43, 02:10](989 MB) +PASS -- TEST 'conus13km_2threads_intel' [20:41, 02:04](991 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [20:29, 01:44](859 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 08:39] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [24:51, 02:10](808 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 04:41] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:51, 01:42](952 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:45, 01:54](948 MB) +PASS -- TEST 'conus13km_debug_intel' [24:43, 01:54](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:12, 01:40](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:42, 02:10](1041 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 01:48](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:21, 04:17] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:28, 01:50](984 MB) + +PASS -- COMPILE 'hafsw_intel' [11:26, 09:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [23:26, 02:53](593 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:10, 01:55](938 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:07, 02:47](644 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:25, 02:22](673 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:13, 03:16](694 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [21:50, 02:05](378 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:49, 03:06](387 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [21:31, 02:34](325 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:11, 03:29](360 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:53, 02:33](397 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:23, 01:53](399 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:12, 01:52](474 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:29, 01:24](323 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:11] ( 1447 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:28, 02:30](498 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:14] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 02:34](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:34, 02:46](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:01, 02:06](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:54, 03:08](638 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:17, 03:12](618 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:07, 01:35](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:28, 10:18] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:45, 01:43](1822 MB) + +PASS -- COMPILE 'atml_intel' [10:35, 08:57] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:27, 05:27] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:29, 08:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [16:44, 02:20](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [15:55, 02:53](2892 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [15:55, 02:55](2907 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:28] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [15:45, 02:27](4371 MB) SYNOPSIS: -Starting Date/Time: 20240919 12:02:02 -Ending Date/Time: 20240919 13:28:17 -Total Time: 01h:26m:47s +Starting Date/Time: 20241009 19:44:38 +Ending Date/Time: 20241009 21:12:19 +Total Time: 01h:28m:12s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/opnReqTest b/tests/opnReqTest index 3578f1a098..f23b85b31a 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -231,6 +231,7 @@ run_opnReqTests() { export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} + export INPUTDATA_LM4=${INPUTDATA_LM4} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -635,6 +636,7 @@ RTPWD=${NEW_BASELINE} INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_LM4=${INPUTDATA_LM4:-${INPUTDATA_ROOT}/LM4_input_data} rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE diff --git a/tests/parm/diag_table/diag_table_datm_lm4 b/tests/parm/diag_table/diag_table_datm_lm4 new file mode 100644 index 0000000000..877c6dccae --- /dev/null +++ b/tests/parm/diag_table/diag_table_datm_lm4 @@ -0,0 +1,158 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +#output files +"land_static", -1, "months", 1, "days", "time" +"land_static_sg", -1, "months", 1, "days", "time" +"land_hourly", 1, "hours", 1, "days", "time" +#"land_daily", 24, "hours", 1, "days", "time" +"land_month", 1, "months", 1, "days", "time" +# +#======================= +# LAND MODEL DIAGNOSTICS +#======================= +# +"land", "geolon_t", "geolon_t", "land_static", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_static", "all", .false., "none", 1 +"land", "geolon_t", "geolon_t", "land_month", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_month", "all", .false., "none", 1 +# "land", "geolon_t", "geolon_t", "land_daily", "all", .false., "none", 1 +# "land", "geolat_t", "geolat_t", "land_daily", "all", .false., "none", 1 +"land", "geolon_t", "geolon_t", "land_hourly", "all", .false., "none", 1 +"land", "geolat_t", "geolat_t", "land_hourly", "all", .false., "none", 1 + +# land static output +"lake", "lake_depth", "lake_depth", "land_static", "all", .false., "none", 2 +"lake", "lake_width", "lake_width", "land_static", "all", .false., "none", 2 +"land_sg", "cell_area", "cell_area", "land_static_sg", "all", .false., "none", 2 +"land", "area_land", "land_area", "land_static", "all", .false., "none", 2 +"land", "land_frac", "land_frac", "land_static", "all", .false., "none", 2 +#"land", "no_riv", "no_riv", "land_static", "all", .false., "none", 2 +# "river", "rv_basin", "rv_basin", "land_static", "all", .false., "none", 2 +# "river", "rv_dir", "rv_dir", "land_static", "all", .false., "none", 2 +# "river", "rv_length", "rv_length", "land_static", "all", .false., "none", 2 +# "river", "rv_trav", "rv_trav", "land_static", "all", .false., "none", 2 +"soil", "soil_Ksat", "soil_Ksat", "land_static", "all", .false., "none", 2 +"soil", "soil_rlief", "soil_rlief", "land_static", "all", .false., "none", 2 +"soil", "soil_sat", "soil_sat", "land_static", "all", .false., "none", 2 +"soil", "soil_type", "soil_type", "land_static", "all", .false., "none", 2 +"soil", "soil_wilt", "soil_wilt", "land_static", "all", .false., "none", 2 +# area fractions for different tile types +"land", "frac_glac", "frac_glac", "land_static", "all", .false., "none", 2 +"land", "frac_lake", "frac_lake", "land_static", "all", .false., "none", 2 + +# land multi-level month-average output + +## land 2-band variables + +# # land one-level month-average output +# #"flux", "t_ref_land", "t_ref", "land_month", "all", .true., "none", 2 +"land", "area_land", "land_area", "land_month", "all", .false., "none", 2 +# "land", "area_glac", "glac_area", "land_month", "all", .false., "none", 2 +"land", "area_lake", "lake_area", "land_month", "all", .false., "none", 2 +"land", "area_soil", "soil_area", "land_month", "all", .false., "none", 2 + +# # land daily output +# "land", "area_ntrl", "area_ntrl", "land_daily", "all", .true., "none", 2 + +# # "flux", "evap_land", "evap_land", "land_daily", "all", .true., "none", 2 +# # "flux", "t_ref_land", "t_ref_max", "land_daily", "all", max, "none", 2 +# # "flux", "t_ref_land", "t_ref_min", "land_daily", "all", min, "none", 2 +# "land", "FWSg_lake", "FWSg_lake", "land_daily", "all", .true., "none", 2 +# "land", "FWSg_soil", "FWSg_soil", "land_daily", "all", .true., "none", 2 +# "land", "LWSg_lake", "LWSg_lake", "land_daily", "all", .true., "none", 2 +# "land", "LWSg_soil", "LWSg_soil", "land_daily", "all", .true., "none", 2 +# "land", "precip", "precip", "land_daily", "all", .true., "none", 2 +# "land", "snow_lake", "snow_lake", "land_daily", "all", .true., "none", 2 +# "land", "snow_soil", "snow_soil", "land_daily", "all", .true., "none", 2 +# "land", "runf", "runf", "land_daily", "all", .true., "none", 2 +# # "river", "rv_o_h2o", "rv_o_h2o", "land_daily", "all", .true., "none", 2 +# # "river", "rv_T", "rv_T", "land_daily", "all", .true., "none", 2 +# "vegn", "temp", "vegn_T", "land_daily", "all", .true., "none", 2 +# "vegn", "temp", "vegn_T_max", "land_daily", "all", max, "none", 2 +# "vegn", "temp", "vegn_T_min", "land_daily", "all", min, "none", 2 +# "vegn", "npp", "npp", "land_daily", "all", .true., "none", 2 +# "vegn", "gpp", "gpp", "land_daily", "all", .true., "none", 2 +# "vegn", "an_cl", "an_cl", "land_daily", "all", .true., "none", 2 +# "vegn", "an_op", "an_op", "land_daily", "all", .true., "none", 2 +# "vegn", "LAI", "LAI", "land_daily", "all", .true., "none", 2 +# "vegn", "stomatal_cond_ntrl","gs_ntrl_max","land_daily","all", max, "none", 2 +# "vegn", "temp_ntrl", "vegn_temp_ntrl_max","land_daily","all", max, "none", 2 +# "vegn", "temp_ntrl", "vegn_temp_ntrl_min","land_daily","all", min, "none", 2 +# # land daily variables used in post-processing "refinement" +# "soil", "soil_liq", "soil_liq", "land_daily", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +# "soil", "soil_ice", "soil_ice", "land_daily", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +# "land", "runf_soil", "runf_soil", "land_daily", "all", .true., "none", 2 +# "land", "FWSs", "FWSs", "land_daily", "all", .true., "none", 2 +# "land", "soil_water_supply", "water_supply", "land_daily", "all", .true., "none", 2 +# "vegn", "evap_demand", "water_demand", "land_daily", "all", .true., "none", 2 + +# land hourly output +"land", "area_ntrl", "area_ntrl", "land_hourly", "all", .true., "none", 2 + +# "flux", "evap_land", "evap_land", "land_hourly", "all", .true., "none", 2 +# "flux", "t_ref_land", "t_ref_max", "land_hourly", "all", max, "none", 2 +# "flux", "t_ref_land", "t_ref_min", "land_hourly", "all", min, "none", 2 +"land", "FWSg_lake", "FWSg_lake", "land_hourly", "all", .true., "none", 2 +"land", "FWSg_soil", "FWSg_soil", "land_hourly", "all", .true., "none", 2 +"land", "LWSg_lake", "LWSg_lake", "land_hourly", "all", .true., "none", 2 +"land", "LWSg_soil", "LWSg_soil", "land_hourly", "all", .true., "none", 2 +"land", "precip", "precip", "land_hourly", "all", .true., "none", 2 +"land", "snow_lake", "snow_lake", "land_hourly", "all", .true., "none", 2 +"land", "snow_soil", "snow_soil", "land_hourly", "all", .true., "none", 2 +"land", "runf", "runf", "land_hourly", "all", .true., "none", 2 +# "river", "rv_o_h2o", "rv_o_h2o", "land_hourly", "all", .true., "none", 2 +# "river", "rv_T", "rv_T", "land_hourly", "all", .true., "none", 2 +"vegn", "temp", "vegn_T", "land_hourly", "all", .true., "none", 2 +"vegn", "temp", "vegn_T_max", "land_hourly", "all", max, "none", 2 +"vegn", "temp", "vegn_T_min", "land_hourly", "all", min, "none", 2 +"vegn", "npp", "npp", "land_hourly", "all", .true., "none", 2 +"vegn", "gpp", "gpp", "land_hourly", "all", .true., "none", 2 +"vegn", "an_cl", "an_cl", "land_hourly", "all", .true., "none", 2 +"vegn", "an_op", "an_op", "land_hourly", "all", .true., "none", 2 +"vegn", "LAI", "LAI", "land_hourly", "all", .true., "none", 2 +"vegn", "stomatal_cond_ntrl","gs_ntrl_max","land_hourly","all", max, "none", 2 +"vegn", "temp_ntrl", "vegn_temp_ntrl_max","land_hourly","all", max, "none", 2 +"vegn", "temp_ntrl", "vegn_temp_ntrl_min","land_hourly","all", min, "none", 2 +# land hourly variables used in post-processing "refinement" +"soil", "soil_liq", "soil_liq", "land_hourly", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +"soil", "soil_ice", "soil_ice", "land_hourly", "all", .true., "-1 -1 -1 -1 0 0.1", 2 +"land", "runf_soil", "runf_soil", "land_hourly", "all", .true., "none", 2 +"land", "FWSs", "FWSs", "land_hourly", "all", .true., "none", 2 +"land", "soil_water_supply", "water_supply", "land_hourly", "all", .true., "none", 2 +"vegn", "evap_demand", "water_demand", "land_hourly", "all", .true., "none", 2 + + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/field_table/field_table_lm4 b/tests/parm/field_table/field_table_lm4 new file mode 100644 index 0000000000..c20de33988 --- /dev/null +++ b/tests/parm/field_table/field_table_lm4 @@ -0,0 +1,9 @@ +## Needed for LM4 Component. Append to rest of field table + +## LM4 + "TRACER", "land_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" / + "TRACER", "land_mod", "co2" + "longname", "carbon dioxide" + "units", "kg/kg" / diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index 75a8f5a33f..6203e69a89 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -47,7 +47,7 @@ history_chunksize = @[CICE_HISTORY_CHUNK] history_deflate = @[CICE_HISTORY_DEFLATE] history_precision = @[CICE_HISTORY_PREC] - histfreq = 'm','d','h','x','x' + histfreq = 'm','d','h','1','x' histfreq_n = @[CICE_HISTFREQ_N] hist_avg = @[CICE_HIST_AVG] history_dir = '@[CICE_HISTORY_DIR]' @@ -204,7 +204,7 @@ f_elon = .true. f_elat = .true. f_tmask = .true. - f_blkmask = .true. + f_blkmask = .false. f_tarea = .true. f_uarea = .true. f_dxt = .false. @@ -221,36 +221,36 @@ f_VGRDb = .false. f_VGRDa = .true. f_bounds = .false. - f_aice = 'mdhxx' - f_hi = 'mdhxx' - f_hs = 'mdhxx' - f_Tsfc = 'mdhxx' - f_sice = 'mdhxx' - f_uvel = 'mdhxx' - f_vvel = 'mdhxx' - f_uatm = 'mdhxx' - f_vatm = 'mdhxx' - f_fswdn = 'mdhxx' - f_flwdn = 'mdhxx' + f_aice = 'mdh1x' + f_hi = 'mdh1x' + f_hs = 'mdh1x' + f_Tsfc = 'mdh1x' + f_sice = 'mdh1x' + f_uvel = 'mdh1x' + f_vvel = 'mdh1x' + f_uatm = 'mdh1x' + f_vatm = 'mdh1x' + f_fswdn = 'mdh1x' + f_flwdn = 'mdh1x' f_snowfrac = 'x' - f_snow = 'mdhxx' + f_snow = 'mdh1x' f_snow_ai = 'x' - f_rain = 'mdhxx' + f_rain = 'mdh1x' f_rain_ai = 'x' - f_sst = 'mdhxx' - f_sss = 'mdhxx' - f_uocn = 'mdhxx' - f_vocn = 'mdhxx' - f_frzmlt = 'mdhxx' - f_fswfac = 'mdhxx' + f_sst = 'mdh1x' + f_sss = 'mdh1x' + f_uocn = 'mdh1x' + f_vocn = 'mdh1x' + f_frzmlt = 'mdh1x' + f_fswfac = 'mdh1x' f_fswint_ai = 'x' - f_fswabs = 'mdhxx' + f_fswabs = 'mdh1x' f_fswabs_ai = 'x' - f_albsni = 'mdhxx' - f_alvdr = 'mdhxx' - f_alidr = 'mdhxx' - f_alvdf = 'mdhxx' - f_alidf = 'mdhxx' + f_albsni = 'mdh1x' + f_alvdr = 'mdh1x' + f_alidr = 'mdh1x' + f_alvdf = 'mdh1x' + f_alidf = 'mdh1x' f_alvdr_ai = 'x' f_alidr_ai = 'x' f_alvdf_ai = 'x' @@ -259,64 +259,64 @@ f_albsno = 'x' f_albpnd = 'x' f_coszen = 'x' - f_flat = 'mdhxx' + f_flat = 'mdh1x' f_flat_ai = 'x' - f_fsens = 'mdhxx' + f_fsens = 'mdh1x' f_fsens_ai = 'x' f_fswup = 'x' - f_flwup = 'mdhxx' + f_flwup = 'mdh1x' f_flwup_ai = 'x' - f_evap = 'mdhxx' + f_evap = 'mdh1x' f_evap_ai = 'x' - f_Tair = 'mdhxx' - f_Tref = 'mdhxx' - f_Qref = 'mdhxx' - f_congel = 'mdhxx' - f_frazil = 'mdhxx' - f_snoice = 'mdhxx' - f_dsnow = 'mdhxx' - f_melts = 'mdhxx' - f_meltt = 'mdhxx' - f_meltb = 'mdhxx' - f_meltl = 'mdhxx' - f_fresh = 'mdhxx' + f_Tair = 'mdh1x' + f_Tref = 'mdh1x' + f_Qref = 'mdh1x' + f_congel = 'mdh1x' + f_frazil = 'mdh1x' + f_snoice = 'mdh1x' + f_dsnow = 'mdh1x' + f_melts = 'mdh1x' + f_meltt = 'mdh1x' + f_meltb = 'mdh1x' + f_meltl = 'mdh1x' + f_fresh = 'mdh1x' f_fresh_ai = 'x' - f_fsalt = 'mdhxx' + f_fsalt = 'mdh1x' f_fsalt_ai = 'x' - f_fbot = 'mdhxx' - f_fhocn = 'mdhxx' + f_fbot = 'mdh1x' + f_fhocn = 'mdh1x' f_fhocn_ai = 'x' f_fswthru = 'x' f_fswthru_ai = 'x' f_fsurf_ai = 'x' f_fcondtop_ai = 'x' f_fmeltt_ai = 'x' - f_strairx = 'mdhxx' - f_strairy = 'mdhxx' + f_strairx = 'mdh1x' + f_strairy = 'mdh1x' f_strtltx = 'x' f_strtlty = 'x' f_strcorx = 'x' f_strcory = 'x' - f_strocnx = 'mdhxx' - f_strocny = 'mdhxx' + f_strocnx = 'mdh1x' + f_strocny = 'mdh1x' f_strintx = 'x' f_strinty = 'x' f_taubx = 'x' f_tauby = 'x' f_strength = 'x' - f_divu = 'mdhxx' - f_shear = 'mdhxx' + f_divu = 'mdh1x' + f_shear = 'mdh1x' f_sig1 = 'x' f_sig2 = 'x' f_sigP = 'x' - f_dvidtt = 'mdhxx' - f_dvidtd = 'mdhxx' - f_daidtt = 'mdhxx' - f_daidtd = 'mdhxx' + f_dvidtt = 'mdh1x' + f_dvidtd = 'mdh1x' + f_daidtt = 'mdh1x' + f_daidtd = 'mdh1x' f_dagedtt = 'x' f_dagedtd = 'x' - f_mlt_onset = 'mdhxx' - f_frz_onset = 'mdhxx' + f_mlt_onset = 'mdh1x' + f_frz_onset = 'mdh1x' f_hisnap = 'x' f_aisnap = 'x' f_trsig = 'x' @@ -336,9 +336,9 @@ f_fmelttn_ai = 'x' f_flatn_ai = 'x' f_fsensn_ai = 'x' - f_sitempsnic = 'mdhxx' - f_sitemptop = 'mdhxx' - f_sitempbot = 'mdhxx' + f_sitempsnic = 'mdh1x' + f_sitemptop = 'mdh1x' + f_sitempbot = 'mdh1x' / &icefields_mechred_nml @@ -367,10 +367,10 @@ f_apondn = 'x' f_apeffn = 'x' f_hpondn = 'x' - f_apond = 'mdhxx' - f_hpond = 'mdhxx' - f_ipond = 'mdhxx' - f_apeff = 'mdhxx' + f_apond = 'mdh1x' + f_hpond = 'mdh1x' + f_ipond = 'mdh1x' + f_apeff = 'mdh1x' f_apond_ai = 'x' f_hpond_ai = 'x' f_ipond_ai = 'x' diff --git a/tests/parm/input_datm_lm4.nml.IN b/tests/parm/input_datm_lm4.nml.IN new file mode 100644 index 0000000000..60f0336995 --- /dev/null +++ b/tests/parm/input_datm_lm4.nml.IN @@ -0,0 +1,406 @@ +&atmos_model_nml + blocksize = 32 +/ + +&diag_manager_nml + prepend_date = .true. + max_output_fields = 450 + max_axes = 400, + max_files = 400, + max_num_axis_sets = 400, + max_input_fields = 2000 + max_output_fields = 5000 + max_field_attributes=4 + max_axis_attributes=6 +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + + + +&fms_nml + clock_grain='ROUTINE' + clock_flags='NONE' + domains_stack_size = 5000000 + stack_size =0 + print_memory_usage = .false. +/ +&MOM_input_nml + output_directory = '@[MOM6_OUTPUT_DIR]', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = '@[MOM6_RESTART_DIR]', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override' / + + +&nam_stochy +new_lscale=.true., +OCNSPPT=@[OCN_SPPT], +OCNSPPT_LSCALE=500e3, +OCNSPPT_TAU=21600, +ISEED_OCNSPPT=201601010012, +EPBL=@[EPBL], +EPBL_LSCALE=500e3, +EPBL_TAU=21600, +ISEED_EPBL=201601010023, +/ +&nam_sfcperts +/ + +&lm4_nml + lm4_debug = 1 + grid = 'CS' + layout = @[INPES],@[JNPES] + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + blocksize = -1 + dt_lnd_slow = 3600 + restart_interval = 0,0,0,6,0,0 +/ + + &cana_nml + turbulence_to_use = "lm3v" + init_co2 = 286.0e-6 + canopy_air_mass_for_tracers = 10.0 + allow_small_z0 = .true. + sai_turb = .true. +/ + +&glac_data_nml + input_cover_types = 99 + use_lm2_awc = .true., + rsa_exp_global = 10., + f_iso_cold = 0.92, 0.58 + f_vol_cold = 0.06, 0.08 + f_geo_cold = 0.00, 0.00 + f_iso_warm = 0.92, 0.58 + f_vol_warm = 0.06, 0.08 + f_geo_warm = 0.00, 0.00 + dat_emis_dry = 1., + dat_emis_sat = 1., + geothermal_heat_flux_constant = 0.065 +/ + +&glac_nml + conserve_glacier_mass = .true. + lm2 = .true. + albedo_to_use = 'brdf-params' +/ + +&harvesting_nml + do_harvesting =.true. + grazing_intensity = 18.25 ! roughly 5% of biomass per day + grazing_residue = 0.1 + grazing_frequency = 'daily' + min_lai_for_grazing = 1.0 + frac_wood_wasted_harv = 0.25 + frac_wood_wasted_clear = 0.25 + !frac_wood_fast = ONETHIRD + !frac_wood_med = ONETHIRD + !frac_wood_slow = ONETHIRD + crop_seed_density = 0.1 + waste_below_ground_wood = .TRUE. +/ + +&hlsp_nml + max_num_topo_hlsps = 1 + num_vertclusters = 10 + use_geohydrodata = .true. + strm_depth_penetration = 1.5 + use_hlsp_aspect_in_gwflow = .true. + diagnostics_by_cluster = .true. + init_wt_strmelev = .false. + dammed_strm_bc = .true. + limit_intertile_flow = .true. !.false. + flow_ratio_limit = 0.25 +/ + +&ice_albedo_nml + t_range = 10. +/ + +&ice_model_nml + interp_method = 'bilinear' +/ + +&lake_data_nml + lake_to_use = 'from-rivers' + lake_specific_width = .false. + large_lake_sill_width = 800. + num_l = 20, + dat_emis_dry = 1., + dat_emis_sat = 1., + dat_heat_capacity_ref = 0., + f_iso_liq = 0.025, 0.01 + f_iso_ice = 0.025, 0.01 + f_vol_liq = 0., 0. + f_vol_ice = 0., 0. + f_geo_liq = 0., 0. + f_geo_ice = 0., 0. + dry_lake_depth_frac = 0.5 + dat_z0_momentum(1) = 1.4e-4 + dat_z0_momentum_ice(1) = 1.4e-4 + k_over_B_ice = 0.25 + geothermal_heat_flux_constant = 0.065 +/ + +&lake_nml + albedo_to_use = 'brdf-params' + float_ice_to_top = .true. + lake_depth_max = 1.e10 + max_plain_slope = 16.e-5 + K_z_background = 15.e-5 +/ + + &land_conservation_nml + do_check_conservation=.true. + water_cons_tol = 1e-8 + carbon_cons_tol = 1e-6 +/ + +&land_debug_nml + watch_point = 0, 0, 0, 1 +/ + +&land_model_nml + ! layout = $lnd_layout + ! io_layout = $lnd_io_layout + tau_snow_T_adj = 604800. + prohibit_negative_canopy_water=.false. + min_frac = 1e-8 + npes_io_group = 18 +/ + +&landuse_nml + do_landuse_change = .false. + data_type = 'luh2' + input_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/transitions.nc' + state_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/states.nc' + static_file = '@[INPUTDATA_LM4]/forcings/landuse/LUH2/v2.0h/landfrac.nc' + distribute_transitions = 'min-n-tiles' +/ + +&monin_obukhov_nml + stable_option = 2, + rich_crit = 1.0, + zeta_trans = 0.5 +/ + +&photosynthesis_nml + photosynthesis_to_use = 'leuning' + co2_to_use_for_photosynthesis ='prescribed' ! slm/jgj 2016/12/16 ok to set to interactive + co2_for_photosynthesis = 284.262e-6 ! jgj to match CMIP6 Jan 1 1850 co2 value + respiration_to_use = 'LM3' + Kok_effect = .False. + lai_eps=1.e-5 +/ + +&river_nml + do_rivers = .FALSE. + dt_slow = 86400. + land_area_called_cellarea = .true. + all_big_outlet_ctn0 = .true. + ave_DHG_exp = 0.55, 0.45, 0.0 + ave_DHG_coef = 7.5, 0.3, 0.444444444 + ave_AAS_exp = 0.26, 0.40, 0.34 +/ + +&river_physics_nml + lake_sfc_w_min = 10. + prohibit_cold_ice_outflow = .FALSE. +/ + +&sat_vapor_pres_nml + construct_table_wrt_liq = .true. + construct_table_wrt_liq_and_ice = .true. + use_exact_qs = .true. +/ + +&snow_data_nml + emis_snow_max = 1. + emis_snow_min = 1. + z0_momentum = 0.01 + num_l = 5 + dz = 0.05, 0.2, 0.5, 0.2, 0.05, 0.0, 0.0, 0.0, 0.0, 0.0 + f_iso_cold = 0.92, 0.58 + f_vol_cold = 0.06, 0.08 + f_geo_cold = 0.00, 0.00 + f_iso_warm = 0.77, 0.43 + f_vol_warm = 0.06, 0.08 + f_geo_warm = 0.00, 0.00 + depth_crit = 0.0125 + thermal_cond_ref = 0.09 + + distinct_snow_on_glacier = .TRUE. + f_iso_cold_on_glacier = 0.92, 0.68 + f_vol_cold_on_glacier = 0.06, 0.08 + f_geo_cold_on_glacier = 0.00, 0.00 + f_iso_warm_on_glacier = 0.77, 0.43 + f_vol_warm_on_glacier = 0.06, 0.08 + f_geo_warm_on_glacier = 0.00, 0.00 +/ + +&snow_nml + min_snow_mass = 1.e-7 + albedo_to_use = 'brdf-params' + snow_density = 250. + prevent_tiny_snow = .true. +/ + +&soil_data_nml + geohydrology_to_use = 'hill' + use_comp_for_ic = .true. + use_comp_for_push = .true. + use_tau_fix = .false. + use_sat_fix = .true. + use_alt3_soil_hydraulics = .true. + gw_scale_soil_depth = 0.1666667 + gw_scale_perm = 1.0 + gw_scale_relief = 0.5 + aspect = 0.01 + k0_macro_z = 0.0 + k0_macro_x = 1.0 + freeze_factor = 1.5 + comp = 1e-4 + num_l = 20 + dz = 0.020, 0.040, 0.040, 0.050, 0.05, 0.100, 0.10, 0.200, 0.200, 0.2, + 0.40, 0.40, 0.40, 0.4, 0.4, 1.0, 1.0, 1.0, 1.5, 2.5 + soil_type_file = "INPUT/soil_type.nc" + input_cover_types = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 + tile_names = 'hec', 'sic', 'lic', 'sicl', 'cl', 'si', 'sil', 'sac', 'l', 'sacl', 'sal', 'ls', 's', 'u' + dat_w_sat = 0.468, 0.468, 0.468, 0.464, 0.465, 0.476, 0.476, 0.406, 0.439, 0.404, 0.434, 0.421, 0.339, 0.439 + dat_k_sat_ref = 0.00097, 0.0013, 0.00097, 0.002, 0.0024, 0.0028, 0.0028, 0.0072, 0.0033, 0.0045, 0.0052, 0.014, 0.047, 0.0033 + dat_psi_sat_ref = -0.47, -0.32, -0.47, -0.62, -0.26, -0.76, -0.76, -0.098, -0.35, -0.13, -0.14, -0.036 -0.069, -0.35 + dat_chb = 12.0, 10.0, 12.0, 8.7, 8.2, 5.3, 5.3, 11.0, 5.2, 6.8, 4.7, 4.3, 2.8, 5.2 + dat_heat_capacity_dry = 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6, 1.1e6 + dat_thermal_cond_dry = 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.14, 0.21 + dat_thermal_cond_sat = 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 2.3, 1.5 + dat_thermal_cond_exp = 6, 6, 6, 5, 5, 5, 5, 6, 5, 5, 5, 5, 3, 5 + dat_thermal_cond_scale = 10, 10, 10, 0.5, 0.5, 0.5, 0.5, 10, 0.5, 0.5, 0.5, 0.5, 15, 0.5 + dat_thermal_cond_weight = 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.2, 0.7 + dat_emis_dry = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + dat_emis_sat = 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + dat_tf_depr = 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0 + dat_z0_momentum = 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01 + Dpsi_min_const = -1.e12 + K_min = 1.e-12 + geothermal_heat_flux_constant = 0.065 + retro_a0N1 = .true. +/ + +&soil_nml + init_wtdep = 10. + albedo_to_use = 'brdf-maps' + uptake_to_use = 'darcy2d-linearized' + uptake_oneway = .true. + active_layer_drainage_acceleration = 1. + gw_flux_max = 0.001 + lrunf_from_div = .false. + cold_infilt = .false. + use_depth_to_wt_4 = .true. + layer_for_gw_switch = 16 + bottom_up_cold_infilt = .true. + cold_depth = 3.0 + bwood_macinf = 1. + allow_neg_wl = .true. + prohibit_negative_water_div = .true. + fix_neg_subsurface_wl = .TRUE. +/ + +&static_veg_nml + use_static_veg = .FALSE. + timeline = 'loop' + start_loop = 1981, 1, 1, 0, 0, 0 + end_loop = 1982, 1, 1, 0, 0, 0 + fill_land_mask = .TRUE. + write_static_veg = .FALSE. + input_file = 'INPUT/19810101.static_veg_out.nc' +/ + +&topo_rough_nml + use_topo_rough = .true. + max_topo_rough = 100.0 + topo_rough_factor = 0.01 + topo_rough_source = 'input', + topo_rough_file = 'INPUT/topo_rough_land.nc', +/ + +&topography_nml + topog_file = 'INPUT/navy_topography.data.nc' +/ + +&vegn_data_nml + vegn_to_use = 'uniform' + K1=10, + K2=0.1, + fsc_liv=0.9, + fsc_wood=0.45, + c1(4) = 0.3 + c2(4) = 0.3 + Vmax = 2.0E-5, 2.0E-5, 2.0E-5, 2.0E-5, 1.50E-5, + m_cond = 4., 9., 9., 7., 7., + alpha_phot = 0.05, 0.06, 0.06, 0.06, 0.06, + gamma_resp = 0.03, 0.02, 0.02, 0.02, 0.02, + tc_crit(0:2) = 3*273.16 + fact_crit_phen(0:4) = 0., 0., 0., 0., 0. + fact_crit_fire(0:4) = 0., 0., 0., 0., 0. + cnst_crit_phen(0:4) = 0.30, 0.15, 0.15, 0.30, 0.30 + cnst_crit_fire(0:4) = 0.15, 0.40, 0.15, 0.15, 0.15 + wet_leaf_dreg(0:4) = .3, .3, .3, .3, .3 + ksi = 0, 0, 0, 0, 0, + leaf_refl(0:4,1) = 0.11, 0.11, 0.10, 0.10, 0.10 + leaf_refl(0:4,2) = 0.58, 0.58, 0.45, 0.45, 0.39, + dat_root_zeta(0:4) = 0.35212, 0.17039, 0.28909, 0.25813, 0.17039 + critical_root_density = 0.0, + tau_drip_s = 259200.0 + cmc_lai(0:4) = 0.02, 0.02, 0.02, 0.02, 0.02 + csc_lai(0:4) = 0.30, 0.30, 0.30, 0.30, 0.2 + dat_snow_crit = 2*1.e7, .1, 1.e7, .1 + t_transp_min = 268. + srl(0:1) = 112.0e3, 150.0e3 + root_perm = 14*5e-7 + alpha(1,3) = 4 + leaf_age_tau(2) = 150 + smoke_fraction = 0.9, 0.9, 0.6, 0.6, 0.6 + tg_c3_thresh = 1 + phen_ev1 = 0.2 + phen_ev2 = 0.7 + cmc_eps = 0.01 + alpha(0:4,6) = 0.0, 0.0, 0.012, 0.012, 0.012 + treefall_disturbance_rate = 0.175, 0.185, 0.025, 0.0275, 0.027 + use_light_saber = .true. + sai_cover = .true. + sai_rad = .true. + + min_lai = 1.e-5 ! h1g, prevent numerical instability, 2017-08-24 +/ + +&vegn_nml + init_Tv = 288.0 + rad_to_use = 'two-stream' + snow_rad_to_use = 'paint-leaves' + do_cohort_dynamics = .TRUE. + do_patch_disturbance = .TRUE. + do_phenology = .TRUE. + do_biogeography = .TRUE. + do_seed_transport = .TRUE. + tau_smooth_ncm = 22.0 + rav_lit_bwood = 300. +/ + +&surface_flux_nml + alt_gustiness = .TRUE. + gust_min = 0.0 ! m/s, min. gustiness used when alt_gustiness is .FALSE. +/ + +&atmos_prescr_nml + gust_to_use = 'prescribed' + !gustiness = 5.0 ! m/s, wind gustiness if gust_to_use = 'prescribed' + !gust_min = 0.01 ! m/s, min. gustiness when gust_to_use = 'computed' +/ \ No newline at end of file diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN new file mode 100644 index 0000000000..16bc68285d --- /dev/null +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -0,0 +1,104 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM LND +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 1 + Diagnostic = 0 + ATM_model = @[atm_model] + LND_model = @[lnd_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_lnd = 96 + history_n_lnd_inst = 6 + history_option_lnd_inst = nhours + pio_rearranger = @[pio_rearranger] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# LND # +LND_model: @[lnd_model] +LND_petlist_bounds: @[lnd_petlist_bounds] +LND_omp_num_threads: @[lnd_omp_num_threads] +LND_attributes:: + Verbosity = 1 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + input_dir = INPUT/ +:: + +# cold +runSeq:: +@@[coupling_interval_sec] + MED med_phases_prep_atm + MED -> ATM :remapMethod=redist + ATM + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_prep_lnd + MED -> LND :remapMethod=redist + LND + LND -> MED :remapMethod=redist + MED med_phases_post_lnd + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 4 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 # required for data atmosphere configurations + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + read_restart = @[READRESTART] + mediator_present = true +:: diff --git a/tests/rt.conf b/tests/rt.conf index 407dcde958..347840ec31 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -291,6 +291,12 @@ RUN | datm_cdeps_lnd_gswp3 | - wcoss2 RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 +### CDEPS Data Atmosphere tests with LM4 ### +COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaea | fv3 | +RUN | datm_cdeps_lm4_gswp3 | + hera orion gaea | baseline | +RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaea | | datm_cdeps_lm4_gswp3 + + ### AMIP+ tests ### COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index fd8976c10c..8eb72b1571 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -625,8 +625,8 @@ while getopts ":a:b:cl:mn:dwkreovh" opt; do SRT_NAME="${SINGLE_OPTS[0]}" SRT_COMPILER="${SINGLE_OPTS[1]}" - if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then - die "COMPILER MUST BE 'intel' OR 'gnu'" + if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "intelllvm" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then + die "COMPILER MUST BE 'intel' OR 'intelllvm' OR 'gnu'" fi ;; d) @@ -737,7 +737,7 @@ case ${MACHINE_ID} in PARTITION=c5 dprefix=${dprefix:-/gpfs/f5/${ACCNR}/scratch/${USER}} STMP=${STMP:-${dprefix}/RT_BASELINE} - PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} SCHEDULER="slurm" ;; @@ -788,6 +788,7 @@ case ${MACHINE_ID} in PTMP="${dprefix}/stmp" SCHEDULER="slurm" + cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN ;; @@ -1020,6 +1021,7 @@ fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_LM4=${INPUTDATA_LM4:-${INPUTDATA_ROOT}/LM4_input_data} shift $((OPTIND-1)) if [[ $# -gt 1 ]]; then @@ -1286,6 +1288,7 @@ export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} +export INPUTDATA_LM4=${INPUTDATA_LM4} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/rt_intelllvm.conf b/tests/rt_intelllvm.conf new file mode 100644 index 0000000000..cd3069555b --- /dev/null +++ b/tests/rt_intelllvm.conf @@ -0,0 +1,324 @@ +### RT.CONF FORMATTING ### +# COMPILE Line ( Items separated by a | ) +# Item 1: COMPILE - This tells rt.conf the following information is to be used in setting up a compile job +# Item 2: Compile name - The rt.sh will add _gnu or _intel to it. There must be no duplicate names for each compiler. +# If two compilations are identical except compiler, please use the same name for each. +# Item 3: Compiler to use in build (intel or gnu) +# Item 4: CMAKE Options - Provide all CMAKE options for the build +# Item 5: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines) +## -> EX: + hera orion gaea = compile will only run on hera orion and gaea machines +## -> EX: - wcoss2 acorn = compile will NOT be run on wcoss2 or acorn +# Item 6: [set as fv3]. Used to control the compile job only if FV3 was present, previously used to run a test w/o compiling code +# +# RUN Line ( Items separated by a | ) +## NOTE: The build resulting from the COMPILE line above the RUN line will be used to run the test +# Item 1: RUN - This tells rt.conf the following information is to be used in setting up a model run +# Item 2: Test name. (Which test in the tests/tests directory should be sourced) +# Item 3: Machines to run on (- is used to ignore specified machines, + is used to only run on specified machines). +## reference example above +# Item 4: Controls whether the run creates its own baseline or it uses the baseline from a different (control) test. +# Item 5: Test name to compare baselines with if not itself. + +### IntelLLVM Tests ### +### S2S tests ### +COMPILE | s2swa_32bit | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | + +#GFS +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_gfsv17 | - noaacloud | baseline | +RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 +RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 +RUN | cpld_mpi_gfsv17 | - noaacloud | | + +#SFS +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_sfs | - noaacloud | baseline | + +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | +RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | + +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 + +# Aerosol, no Wave +RUN | cpld_s2sa_p8 | - noaacloud | baseline | + +COMPILE | s2sw | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_noaero_p8 | | baseline | +RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | + +COMPILE | s2swa_debug | intelllvm | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | + +COMPILE | s2sw_debug | intelllvm | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | + +# Waves and aerosol off for computing fluxes in mediator +COMPILE | s2s_aoflux | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | +RUN | cpld_control_noaero_p8_agrid | | baseline | + +COMPILE | s2s | intelllvm | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c48 | | baseline | +RUN | cpld_warmstart_c48 | - noaacloud | baseline | +RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 + +COMPILE | s2swa_faster | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +RUN | cpld_control_p8_faster | - noaacloud | baseline | + +# Unstructured WW3 mesh +COMPILE | s2sw_pdlib | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 + +COMPILE | s2sw_pdlib_debug | intelllvm | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | + +### ATM tests ### +COMPILE | atm_dyn32 | intelllvm | -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 | | fv3 | +RUN | control_flake | | baseline | +RUN | control_CubedSphereGrid | | baseline | +RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | +RUN | control_latlon | | baseline | +RUN | control_wrtGauss_netcdf_parallel | | baseline | +RUN | control_c48 | | baseline | +RUN | control_c48.v2.sfc | | baseline | +RUN | control_c192 | - noaacloud | baseline | +RUN | control_c384 | | baseline | +RUN | control_c384gdas | - noaacloud | baseline | +RUN | control_stochy | | baseline | +RUN | control_stochy_restart | - noaacloud | | control_stochy +RUN | control_lndp | | baseline | +RUN | control_iovr4 | | baseline | +RUN | control_iovr5 | | baseline | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_p8.v2.sfc | - noaacloud | baseline | +RUN | control_p8_ugwpv1 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_noqr_p8 | - noaacloud | | +RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 +RUN | control_decomp_p8 | - noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | +RUN | control_p8_lndp | | baseline | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_mynn | - noaacloud | baseline | +RUN | merra2_thompson | - noaacloud | baseline | +RUN | regional_control | | baseline | +RUN | regional_restart | - noaacloud | | regional_control +RUN | regional_decomp | - noaacloud | | +RUN | regional_2threads | - derecho noaacloud | | +RUN | regional_noquilt | - jet s4 | baseline | +RUN | regional_netcdf_parallel | - acorn | baseline | +RUN | regional_2dwrtdecomp | | | +RUN | regional_wofs | - jet s4 | baseline | + +COMPILE | ifi | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | +RUN | regional_ifi_control | + acorn | baseline | +RUN | regional_ifi_decomp | + acorn | | +RUN | regional_ifi_2threads | + acorn | | + +COMPILE | rrfs | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +RUN | rap_control | | baseline | +RUN | regional_spp_sppt_shum_skeb | | baseline | +RUN | rap_decomp | - noaacloud | | +RUN | rap_2threads | - noaacloud | | +RUN | rap_restart | - noaacloud | | rap_control +RUN | rap_sfcdiff | - noaacloud | baseline | +RUN | rap_sfcdiff_decomp | - noaacloud | | +RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff +RUN | hrrr_control | - noaacloud | baseline | +RUN | hrrr_control_decomp | - noaacloud | | +RUN | hrrr_control_2threads | - noaacloud | | +RUN | hrrr_control_restart | - noaacloud | | hrrr_control +RUN | rrfs_v1beta | | baseline | +RUN | rrfs_v1nssl | | baseline | +RUN | rrfs_v1nssl_nohailnoccn | | baseline | + +COMPILE | csawmg | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | +RUN | control_csawmg | - noaacloud | baseline | +RUN | control_ras | - noaacloud | baseline | + +# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere +COMPILE | wam | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | +RUN | control_wam | - noaacloud | baseline | + +COMPILE | atm_faster_dyn32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | control_p8_faster | - noaacloud | baseline | +RUN | regional_control_faster | | baseline | + +### DEBUG ATM tests ### +COMPILE | atm_debug_dyn32 | intelllvm | -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 | - noaacloud | fv3 | +RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | +RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | +RUN | control_stochy_debug | - noaacloud | baseline | +RUN | control_lndp_debug | - noaacloud | baseline | +RUN | control_csawmg_debug | - noaacloud | baseline | +RUN | control_ras_debug | - noaacloud | baseline | +RUN | control_diag_debug | - noaacloud | baseline | +RUN | control_debug_p8 | - noaacloud | baseline | +RUN | regional_debug | - noaacloud | baseline | +RUN | rap_control_debug | - noaacloud | baseline | +RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | hrrr_gf_debug | - noaacloud | baseline | +RUN | hrrr_c3_debug | - noaacloud | baseline | +RUN | rap_unified_drag_suite_debug | - noaacloud | | +RUN | rap_diag_debug | - noaacloud | baseline | +RUN | rap_cires_ugwp_debug | - noaacloud | baseline | +RUN | rap_unified_ugwp_debug | - noaacloud | | +RUN | rap_lndp_debug | - noaacloud | baseline | +RUN | rap_progcld_thompson_debug | - noaacloud | baseline | +RUN | rap_noah_debug | - noaacloud | baseline | +RUN | rap_sfcdiff_debug | - noaacloud | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | +RUN | rap_clm_lake_debug | - noaacloud | baseline | +RUN | rap_flake_debug | - noaacloud | baseline | +RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | + +COMPILE | wam_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | control_wam_debug | - noaacloud | baseline | + +### 32-bit physics tests ### +COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | +RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 + +COMPILE | rrfs_dyn32_phy32_faster | intelllvm | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | conus13km_control | - noaacloud | baseline | +RUN | conus13km_2threads | - noaacloud | | conus13km_control +RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control + +COMPILE | rrfs_dyn64_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | + +COMPILE | rrfs_dyn32_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_qr | - noaacloud | | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | - noaacloud | | + +COMPILE | rrfs_dyn64_phy32_debug | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | + +### HAFS tests ### +COMPILE | hafsw | intelllvm | -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 | | fv3 | +RUN | hafs_regional_atm | | baseline | +RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | +RUN | hafs_regional_atm_ocn | | baseline | +RUN | hafs_regional_atm_wav | | baseline | +RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | +RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | + +# This probably works on S4, but I cannot know for certain. I don't have access to the machine. +RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline | + +COMPILE | hafsw_debug | intelllvm | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | + +COMPILE | hafsw_faster | intelllvm | -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 | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | + +COMPILE | hafs_mom6w | intelllvm | -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 | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | + +COMPILE | hafs_all | intelllvm | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | +RUN | hafs_regional_docn | - noaacloud | baseline | +RUN | hafs_regional_docn_oisst | - noaacloud | baseline | +RUN | hafs_regional_datm_cdeps | - jet s4 noaacloud | baseline | + +### CDEPS Data Atmosphere tests ### +COMPILE | datm_cdeps | intelllvm | -DAPP=NG-GODAS | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | +RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr +RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | | +RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline | + +COMPILE | datm_cdeps_debug | intelllvm | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 | +RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline | + +COMPILE | datm_cdeps_faster | intelllvm | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | + +### CDEPS Data Atmosphere tests with LND ### +COMPILE | datm_cdeps_land | intelllvm | -DAPP=LND | - wcoss2 | fv3 | +RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 + +### AMIP+ tests ### +COMPILE | atm_ds2s_docn_pcice | intelllvm | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | +COMPILE | atm_ds2s_docn_dice | intelllvm | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | +RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 + +### ATM-LND tests ### +COMPILE | atml | intelllvm | -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 | | fv3 | +RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | +RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd + +COMPILE | atml_debug | intelllvm | -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 | | fv3 | +RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | + +### ATM-WAV tests ### +#mediator (cmeps) +COMPILE | atmw | intelllvm | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | +RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | + +### ATM-GOCART tests ### +COMPILE | atmaero | intelllvm | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | +RUN | atmaero_control_p8 | - noaacloud | baseline | +RUN | atmaero_control_p8_rad | - noaacloud | baseline | +RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | + +### ATM-CMAQ tests ### +#COMPILE | atmaq | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | +#RUN | regional_atmaq | - jet s4 | baseline | + +COMPILE | atmaq_debug | intelllvm | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 86df50569f..ecf4259421 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -79,10 +79,13 @@ function compute_petbounds_and_tasks() { aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" # LND - if [[ ${LND_tasks:-0} -gt 0 ]]; then - LND_tasks=$((LND_tasks * lnd_omp_num_threads)) - lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" - n=$((n + LND_tasks)) + if [[ ${lnd_model:-} = "lm4" ]]; then + # set lnd_petlist_bounds to be same as ATM_compute_tasks + lnd_petlist_bounds="0 $((ATM_compute_tasks - 1))" + elif [[ ${LND_tasks:-0} -gt 0 ]]; then # noahmp component or other + LND_tasks=$((LND_tasks * lnd_omp_num_threads)) + lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" + n=$((n + LND_tasks)) fi # FBH @@ -213,7 +216,7 @@ submit_and_wait() { job_running=true else job_running=false - job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%64 | grep "^${jobid}" | grep "${JBNME}" ) + job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%128 | grep "^${jobid}" | grep "${JBNME}" ) fi # Getting the status letter from scheduler info status=$( grep "${jobid}" <<< "${job_info}" ) @@ -599,6 +602,7 @@ ecflow_run() { fi "${PATHRT}/abort_dep_tasks.py" done + echo sleep 65 # wait one ECF_INTERVAL plus 5 seconds echo "rt_utils.sh: ECFLOW tasks completed, cleaning up suite" diff --git a/tests/run_test.sh b/tests/run_test.sh index 8f5c0a02bf..64f7f007d2 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -117,9 +117,9 @@ case ${MACHINE_ID} in echo "No special nccmp load necessary" ;; gaea) - module use modulefiles - module load modules.fv3 - module load gcc/12.2.0 + module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core + module load stack-intel/2023.1.0 stack-cray-mpich/8.1.25 + module load nccmp/1.9.0.1 ;; derecho) module load nccmp @@ -240,7 +240,7 @@ fi if [[ "Q${FIELD_TABLE:-}" != Q ]]; then cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table fi - + # fix files if [[ ${FV3} == true ]]; then cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt . @@ -302,6 +302,11 @@ if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]]; then atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table fi +if [[ "${FIELD_TABLE_ADDITIONAL:-}Q" != Q ]] ; then + # Append field table + atparse < "${PATHRT}/parm/field_table/${FIELD_TABLE_ADDITIONAL:-}" >> field_table +fi + # ATMAERO if [[ ${CPLCHM} == .true. ]] && [[ ${S2S} = 'false' ]]; then atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 98b9f8a077..98592a1109 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -66,6 +66,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + history/iceh.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -79,6 +80,9 @@ export DNATS=0 export RESTART_N=3 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' +#CICE forecast day output stream +hist_n_24h=$(( 24*3600/${DT_CICE} )) +export CICE_HISTFREQ_N="0, 0, 6, ${hist_n_24h}, 1" export INPES=$INPES_cpl_unstr export JNPES=$JNPES_cpl_unstr diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index a85cc6adad..c4a9125082 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -47,6 +47,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ MOM6_OUTPUT/ocn_2021_03_23_09.nc \ history/iceh_06h.2021-03-23-43200.nc \ + history/iceh.2021-03-23-21600.nc \ 20210323.120000.out_pnt.ww3 \ 20210323.120000.out_grd.ww3 " @@ -65,6 +66,9 @@ export RESTART_N=3 export RESTART_INTERVAL="${RESTART_N} -1" export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +#CICE forecast day output stream +hist_n_24h=$(( 24*3600/${DT_CICE} )) +export CICE_HISTFREQ_N="0, 0, 6, ${hist_n_24h}, 1" # ATM warm start export WARM_START=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 1f64f8b861..72debc6f49 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -111,6 +111,9 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=40 +fi # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 47b41d2da9..90e02daccb 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -101,6 +101,15 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then WLCLK=50 fi +if [[ $MACHINE_ID = hercules && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = orion && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi export K_SPLIT=2 export N_SPLIT=5 diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 36b1c81ea0..f93f351c25 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -66,6 +66,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + history/iceh.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -79,7 +80,9 @@ export DNATS=0 export RESTART_N=3 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' - +#CICE forecast day output stream +hist_n_24h=$(( 24*3600/${DT_CICE} )) +export CICE_HISTFREQ_N="0, 0, 6, ${hist_n_24h}, 1" export INPES=$INPES_cpl_unstr_mpi export JNPES=$JNPES_cpl_unstr_mpi diff --git a/tests/tests/datm_cdeps_lm4_gswp3 b/tests/tests/datm_cdeps_lm4_gswp3 new file mode 100644 index 0000000000..ea57b3b5c5 --- /dev/null +++ b/tests/tests/datm_cdeps_lm4_gswp3 @@ -0,0 +1,120 @@ +# +# DATM_CDEPS_LM4_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_LM4_GSWP3 - control " + +export CNTL_DIR="datm_cdeps_lm4_gswp3" + +export LIST_FILES="\ + RESTART/cana.res.tile1.nc \ + RESTART/cana.res.tile2.nc \ + RESTART/cana.res.tile3.nc \ + RESTART/cana.res.tile4.nc \ + RESTART/cana.res.tile5.nc \ + RESTART/cana.res.tile6.nc \ + RESTART/glac.res.tile1.nc \ + RESTART/glac.res.tile2.nc \ + RESTART/glac.res.tile3.nc \ + RESTART/glac.res.tile4.nc \ + RESTART/glac.res.tile5.nc \ + RESTART/glac.res.tile6.nc \ + RESTART/lake.res.tile1.nc \ + RESTART/lake.res.tile2.nc \ + RESTART/lake.res.tile3.nc \ + RESTART/lake.res.tile4.nc \ + RESTART/lake.res.tile5.nc \ + RESTART/lake.res.tile6.nc \ + RESTART/land.res.tile1.nc \ + RESTART/land.res.tile2.nc \ + RESTART/land.res.tile3.nc \ + RESTART/land.res.tile4.nc \ + RESTART/land.res.tile5.nc \ + RESTART/land.res.tile6.nc \ + RESTART/landuse.res \ + RESTART/snow.res.tile1.nc \ + RESTART/snow.res.tile2.nc \ + RESTART/snow.res.tile3.nc \ + RESTART/snow.res.tile4.nc \ + RESTART/snow.res.tile5.nc \ + RESTART/snow.res.tile6.nc \ + RESTART/soil.res.tile1.nc \ + RESTART/soil.res.tile2.nc \ + RESTART/soil.res.tile3.nc \ + RESTART/soil.res.tile4.nc \ + RESTART/soil.res.tile5.nc \ + RESTART/soil.res.tile6.nc \ + RESTART/vegn1.res.tile1.nc\ + RESTART/vegn1.res.tile2.nc\ + RESTART/vegn1.res.tile3.nc\ + RESTART/vegn1.res.tile4.nc\ + RESTART/vegn1.res.tile5.nc\ + RESTART/vegn1.res.tile6.nc\ + RESTART/vegn2.res.tile1.nc\ + RESTART/vegn2.res.tile2.nc\ + RESTART/vegn2.res.tile3.nc\ + RESTART/vegn2.res.tile4.nc\ + RESTART/vegn2.res.tile5.nc\ + RESTART/vegn2.res.tile6.nc" + + +export_datm_cdeps + +# these are not in export_datm_cdeps, but needed with LM4 +export LNDRES=C96 +#export INPES=$INPES_cpl_dflt +#export JNPES=$JNPES_cpl_dflt +export INPES=2 +export JNPES=2 +export THRD=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt +export NPX=97 +export NPY=97 + + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=00 +export FHMAX=48 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=fv1.9x2.5_141008_ESMFmesh.nc +export atm_datamode=CLMNCEP +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="lm4" +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE="startup" +export READRESTART=.false. +export ATM_compute_tasks=24 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=24 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=2 +export layout_y=2 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +#export FV3_RUN="lnd_datm_cdeps_gswp.IN lm4_run.IN" +export FV3_RUN="lm4_run.IN" +export DIAG_TABLE="diag_table_datm_lm4" +export FIELD_TABLE_ADDITIONAL=field_table_lm4 +export INPUT_NML="input_datm_lm4.nml.IN" \ No newline at end of file diff --git a/tests/tests/datm_cdeps_lm4_gswp3_rst b/tests/tests/datm_cdeps_lm4_gswp3_rst new file mode 100644 index 0000000000..efa4e6fcf4 --- /dev/null +++ b/tests/tests/datm_cdeps_lm4_gswp3_rst @@ -0,0 +1,126 @@ +# +# DATM_CDEPS_LM4_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_LM4_GSWP3_RST - control restart" + +export CNTL_DIR="datm_cdeps_lm4_gswp3" + +export LIST_FILES="\ + RESTART/cana.res.tile1.nc \ + RESTART/cana.res.tile2.nc \ + RESTART/cana.res.tile3.nc \ + RESTART/cana.res.tile4.nc \ + RESTART/cana.res.tile5.nc \ + RESTART/cana.res.tile6.nc \ + RESTART/glac.res.tile1.nc \ + RESTART/glac.res.tile2.nc \ + RESTART/glac.res.tile3.nc \ + RESTART/glac.res.tile4.nc \ + RESTART/glac.res.tile5.nc \ + RESTART/glac.res.tile6.nc \ + RESTART/lake.res.tile1.nc \ + RESTART/lake.res.tile2.nc \ + RESTART/lake.res.tile3.nc \ + RESTART/lake.res.tile4.nc \ + RESTART/lake.res.tile5.nc \ + RESTART/lake.res.tile6.nc \ + RESTART/land.res.tile1.nc \ + RESTART/land.res.tile2.nc \ + RESTART/land.res.tile3.nc \ + RESTART/land.res.tile4.nc \ + RESTART/land.res.tile5.nc \ + RESTART/land.res.tile6.nc \ + RESTART/landuse.res \ + RESTART/snow.res.tile1.nc \ + RESTART/snow.res.tile2.nc \ + RESTART/snow.res.tile3.nc \ + RESTART/snow.res.tile4.nc \ + RESTART/snow.res.tile5.nc \ + RESTART/snow.res.tile6.nc \ + RESTART/soil.res.tile1.nc \ + RESTART/soil.res.tile2.nc \ + RESTART/soil.res.tile3.nc \ + RESTART/soil.res.tile4.nc \ + RESTART/soil.res.tile5.nc \ + RESTART/soil.res.tile6.nc \ + RESTART/vegn1.res.tile1.nc\ + RESTART/vegn1.res.tile2.nc\ + RESTART/vegn1.res.tile3.nc\ + RESTART/vegn1.res.tile4.nc\ + RESTART/vegn1.res.tile5.nc\ + RESTART/vegn1.res.tile6.nc\ + RESTART/vegn2.res.tile1.nc\ + RESTART/vegn2.res.tile2.nc\ + RESTART/vegn2.res.tile3.nc\ + RESTART/vegn2.res.tile4.nc\ + RESTART/vegn2.res.tile5.nc\ + RESTART/vegn2.res.tile6.nc" + + +export_datm_cdeps + +# these are not in export_datm_cdeps, but needed with LM4 +export LNDRES=C96 +#export INPES=$INPES_cpl_dflt +#export JNPES=$JNPES_cpl_dflt +export INPES=2 +export JNPES=2 +export THRD=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt +export NPX=97 +export NPY=97 + + +export SYEAR=2000 +export SMONTH=01 +export SDAY=02 +export SHOUR=00 +export FHMAX=24 +export FHROT=0 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=fv1.9x2.5_141008_ESMFmesh.nc +export atm_datamode=CLMNCEP +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export UFS_CONFIGURE="ufs.configure.atm_lm4.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="lm4" +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE="continue" +export READRESTART=.false. +export ATM_compute_tasks=24 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=24 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=2 +export layout_y=2 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export WARM_START=.true. +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +# expected checkpoint restarts are named like: YYYYMMDD.HHMMSS.*.res* +export LM4_RESTART_PREFIX=${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT}+ ${SHOUR} )))0000 + +#export FV3_RUN="lnd_datm_cdeps_gswp.IN lm4_run.IN" +export FV3_RUN="lm4_run.IN" +export DIAG_TABLE="diag_table_datm_lm4" +export INPUT_NML="input_datm_lm4.nml.IN" +export FIELD_TABLE_ADDITIONAL=field_table_lm4 \ No newline at end of file diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 5475d74b56..25a8bcecc5 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -40,3 +40,7 @@ NTILES=1 if [[ " hera orion hercules jet acorn wcoss2" =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi + +if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi